Hi folks,
I have something like this in my app:
<s:Scroller width="500" height="500">
<s:Group>
<s:RichEditableText editable="false" id="RET"/>
</s:Group>
</s:Scroller>
But the problem is here, the location of scrollbar is in the right side of container... I want it in the left side of my container. How can I do this?!
and also after that, How can I costumize my scrollbar? change colours and use some specific pics instead of my scrollbar arrow objects?!
cheers
I found the way, myself. For my simple code above, It will be something like this:
<s:Group id="myGroup"
width="500" height="500"
x="10" y="10"
clipAndEnableScrolling="true">
<s:RichEditableText editable="false" id="RET"/>
</s:Group>
<s:VScrollBar height="500"
viewport="{myGroup}" x="{myGroup.x}" y="{myGroup.y}"/>
Cheers
BornA
North America
Europe, Middle East and Africa
Asia Pacific
Copyright © 2012 Adobe Systems Incorporated. All rights reserved.
Use of this website signifies your agreement to the Terms of Use and Online Privacy Policy (updated 07-14-2009).