tigerman Posted December 15, 2010 Posted December 15, 2010 Hey, is it possible to create scrollbar with guieditor ? if yes then short explain wount be bad
Discord Moderators Zango Posted December 15, 2010 Discord Moderators Posted December 15, 2010 it isn't I reckon
Remp Posted December 15, 2010 Posted December 15, 2010 Nope http://bugs.mtasa.com/view.php?id=5090 (the title should actually say scrollbars not progress bars but i cant change it)
Castillo Posted December 15, 2010 Posted December 15, 2010 to create a scrollbar (not scrollpanel) easy with guieditor you gotta create a progress bar then just copy the position and size of progress and paste in your scrollbar element, i've done this many times and works perfectly.
tigerman Posted January 3, 2011 Author Posted January 3, 2011 mm theres on example what i did but still no luck GUIEditor_Window = {} GUIEditor_Progress = {} GUIEditor_Window[1] = guiCreateWindow(473,483,398,201,"",false) --GUIEditor_Progress[1] = guiCreateProgressBar(64,24,274,26,false,GUIEditor_Window[1]) scrollBar = guiCreateScrollBar(64,24,274,26,true,true,GUIEditor_Window[4]) What i did wrong ?
Castillo Posted January 3, 2011 Posted January 3, 2011 of course it won't work if you put GUIEditor_Window[4]! your GUI-window element is GUIEditor_Window[1]. GUIEditor_Window = {} GUIEditor_Progress = {} GUIEditor_Window[1] = guiCreateWindow(473,483,398,201,"",false) --GUIEditor_Progress[1] = guiCreateProgressBar(64,24,274,26,false,GUIEditor_Window[1]) scrollBar = guiCreateScrollBar(64,24,274,26,true,false,GUIEditor_Window[1])
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now