Why can I not set the width of my scrollbar componeent to be smaller? Does anyone know how to do this? And no, you can’t go into properties. SO far the only way I have figured this out is to actually go into the scrolbar component and make things smaller. but there has to be an easier way
Hmm, you could change the _xscale of it:
//on Scrollbar Component, no need for an instance name this way
onClipEvent(load){
_xscale=50;
}
Anyway, sounds like what you want.
Later,
–Elios
ok that was good, thanks, but it doesn’t really look right, becasue I wanted the scrollbar to be pretty thin, and what happens is it kinda looks distorted on the top where the arrows are.
Thank you though, very clever, I couldn’t figure it out for the life of me.