tigerman Posted December 15, 2010 Share Posted December 15, 2010 Hey, is it possible to create scrollbar with guieditor ? if yes then short explain wount be bad Link to comment
Discord Moderators Zango Posted December 15, 2010 Discord Moderators Share Posted December 15, 2010 it isn't I reckon Link to comment
Remp Posted December 15, 2010 Share 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) Link to comment
Castillo Posted December 15, 2010 Share 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. Link to comment
tigerman Posted January 3, 2011 Author Share 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 ? Link to comment
Castillo Posted January 3, 2011 Share 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]) Link to comment
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