7/2/2010 10:41:21 AM
Title:
how to access root in flash actionscript 3.0
I am a beginner in flash , have worked earlier in actionscript 2.0 . I want to use the _root in actionscript 3.0 . how can i do it
7/2/2010 10:46:01 AM
for actionscript 3.0 declare root then use it . here is example to access the root
var myRoot= root;
//call or access anything from root
myRoot.anyFunction()
7/2/2010 10:47:11 AM
thanks Bryse that was deadly fast response :)