I am new to actionscript 3.0 and I\'m experiencing difficulty trying to pass a variable that is created and set in frame 1 to a dynamic text box that is added to the stage i
A simple fix would be creating global variable instead of local .
var myVar = "hi" ;
to
this.myVar = "hi" ;
If you decaled in Action Layer frame 1 , u can further access the this.myVar in other frames