blob: 2aecde60572903a9bf8b68386eabea29dbceaf68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import com.oop.ScrollingMenuFrame;
class com.threads.ThreadScroller extends ScrollingMenuFrame
{
var intRate:Number = 20; // scroller speed
public function doLoad(_dataArray:Array , _buttonType:String):Void {
holder_mc.attachMovie("ThreadSelectionSystem", "threads", 1000);
holder_mc["threads"].doInit(_dataArray, _buttonType );
// holder_mc._x = 0; // use as needed! this puts the horiz scroller back in view
holder_mc._y = 0; // when a keyword tile is clicked.
}
};
|