I've got this ui screen that basically has 3 buttons in a buttonbar, each button is linked to it's own Symbol in a ViewStack
Actionscript2:
How do I get reference to the instantiated views? It has the "AS Linkage" set up appropriately but always returns null.
UC:
I also tried this:
Actionscript2:
Code:
MenuButtonBar.dataProvider = [ {label:"Test1", data:"Test1View"}, {label:"Test2", data:"Test2View"}, {label:"Test3", data: "Test3View"} ];
UC:
Code:
Test1View = GetVariableObject("_root.Test1View");
I also tried this:
Code:
GetVariableObject("_root.MainViewStack.currentView");
Comment