Scroll plane

i dont like using scroll bars, but i am in great need of a scroll plane, and have no idea how to use the thing. a little insite would help greatly. thank you

=ryan=

try this:
_root.attachMovie(“FScrollPaneSymbol”, “mysp”, 1);
_root.mysp.setScrollContent(clip); //clip is the clip you want inside the scrollpane
_root.mysp.setSize(width, height);
_root.mysp.setHorizontal(true);
_root.mysp.setVScroll(true);
_root.mysp.setEnabled(true);
_root.mysp.setScrollPosition(xpos,ypos);

I hope this will give you the basic idea

Steve