itHyperoX Posted May 25, 2018 Share Posted May 25, 2018 (edited) Hi, is there any way to just hide this "scrolling" thing ? Edited May 25, 2018 by TheMOG Link to comment
itHyperoX Posted May 25, 2018 Author Share Posted May 25, 2018 with guiSetAlpha it's changing the panel too, i just want to hide that scroll thing. Link to comment
Mahlukat Posted May 25, 2018 Share Posted May 25, 2018 You can hide with other gui element like this; local backLabel = guiCreateLabel(x,y,w,h, "", relative, parent) local list = guiCreateGridList(0,0,w+15,h, false, backLabel) Link to comment
itHyperoX Posted May 25, 2018 Author Share Posted May 25, 2018 as i said, i just want to hide this "scrolling bar" Link to comment
Tails Posted May 25, 2018 Share Posted May 25, 2018 (edited) http://static.cegui.org.uk/static/WindowsLookProperties.html#ForceVertScrollbar guiSetProperty(gridlist, 'ForceVertScrollbar', 'False') I think that should do it. Edited May 25, 2018 by Tails Link to comment
WiBox Posted May 26, 2018 Share Posted May 26, 2018 Second? You just want to remove the Scrolling Bar right? If it's a Script then search for it and enter the script and search on " guiCreateScrollBar " or change the alpha to 0 or just remove the line of guiCreateScrollBar If you didn't understand what I mean, I mean just enter the resource of this window and as i said about the scroll bar. Link to comment
Tails Posted May 26, 2018 Share Posted May 26, 2018 (edited) @SSKE The scrollbar is part of the gridlist, it shows up when there are more items than can be shown. Edited May 26, 2018 by Tails 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