You could use a container width scrollingpolicy set to "on", and have another box inside of that which is the same size as the actual content you wish to scroll.

e.g.:

<!-- Box with scrollbars -->
<mx:Box hScrollPolicy="on" vScrollPolicy="on" width="200" height="200">
<mx:Box width="{content.width}" height="{content.height}"/>
</mx:Box>

<!-- Box holding the actual content -->
<mx:Box id="content" hScrollPolicy="off" vScrollPolicy="off">
...
</mx:Box>

On 1/25/06, Sreejith Unnikrishnan <[EMAIL PROTECTED]> wrote:
Rather strange requirement that I have.
 
Is it possible to have a stand-alone scrollbar?
Basically, I need to implement a scrollbar that controls the scroll in another UI component.
 
Any suggestion is welcome.
 
Regards
Sree


--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS
Web site design development Computer software development Software design and development
Macromedia flex Software development best practice


YAHOO! GROUPS LINKS






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




YAHOO! GROUPS LINKS




Reply via email to