summaryrefslogtreecommitdiff
path: root/bPod/com/threads/ThreadScroller.as
diff options
context:
space:
mode:
Diffstat (limited to 'bPod/com/threads/ThreadScroller.as')
-rw-r--r--bPod/com/threads/ThreadScroller.as15
1 files changed, 15 insertions, 0 deletions
diff --git a/bPod/com/threads/ThreadScroller.as b/bPod/com/threads/ThreadScroller.as
new file mode 100644
index 0000000..2aecde6
--- /dev/null
+++ b/bPod/com/threads/ThreadScroller.as
@@ -0,0 +1,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.
+ }
+
+}; \ No newline at end of file