Hi -
I would like to put the scrollbar on the left side of the textarea of the scrollpane component. I've been searching and reading about how to do accomplish this, but cannot find a single thread on any forum relating to this for MX Professional 2004. There's this thread which ended up in 'most useful threads' sticky:
http://www.actionscript.org/forums/s...threadid=24601
but this is for MX and lower, and that code doesn't seem to exist in the class file (ScrollPane.as) for the scrollpane in MX Pro 2004. There is this code:
ActionScript Code:
function setVPosition(position:Number)
{
if (position <= vScroller.maxPos && position >= vScroller.minPos)
{
super.setVPosition(position);
spContentHolder._y = -position; // - bounds.yMin;
}
}
which I'm not very adept with as code to play around with to get my positioning. I am aware that this would change the scroll bar alignment on every instance of the component in my movie, which is fine, it's only used once.
many thanks for any help
blksheep