How can i remove the border of a scrollpane?? (Flash MX 2004 Pro)
or set its color to the background color.
thanks
Kev P - 30 Jul 2004 13:07 GMT
a quick way to set it to transparent is to edit the the skins for the
scrollpane by going to your library and right click edit on scrollpane border
skin and setting the alpha to 0.
or
in your actions panel on the layer where your scrollpane is put the following
code:
myScroller._alpha = 0;
where my scroller is the instance name of your scroll bar.
hope this helps
enox - 29 Sep 2004 05:44 GMT
In MX2004, components are edited through styles and skins. To rid the
scrollpane component of the border...
1. select scrollpane and give it an instance name
2. create a new layer and click on the first frame
3. open the actionScript window and paste the following, editing the portion
with your own instance name...
myScrollPaneName.setStyle("borderStyle", "none");