Hi,
I have this little problem where my scroll pane (cmpThumbs), which is inside another movieClip (nav) isn’t scrolling. The arrow buttons on the scroll bar work, and even the grey area. When you click on it, the scroller will jump to that place. The only problem is, is that the scroller won’t drag anymore.
Attached to that movieClip, nav, is the following code:
onClipEvent (enterFrame) {
this.cmpThumbs.refreshPane();
this._y = (_parent.canvas._y+_parent.canvas._height)+0;
//_parent.nav.cmpThumbs.hScrollPolicy = “on”;
}
I have found that //_parent.nav.cmpThumbs.hScrollPolicy = “on”; doesn’t help, but by commenting out
this.cmpThumbs.refreshPane();
it works fine. However, I need the scrollPane to refresh as you can tell by the other line of code, I need the whole MC to move to position accordingly to accomidate “canvas”.
Any help would be most appreciated.
I am using a v1 scrollPane in Mx2004.
–iMat