actionscript Q.
actionscript Q.
- Started
- Last post
- 5 Responses
- pixelman
I have this swf (A) with a MC (1).
Inside that MC (1) I load a external swf (B).
Inside that external swf (B) I have a other MC (2).Question: How can I comunicate from in MC (2) to the "root" swf (B)?
_root doesn't work.
- UndoUndo0
_parent??
- versa0
i've been up all night, so i make no apologies for my ignorant answers today:
_parent.
- UndoUndo0
* quickly apologizes for mine
*ahem
- fusionpixel0
you can also give an instance name to SWF(B) and you should be able to comunicate from anywhere with root.
_root.SWF(B)
now, even if you use root or parent or this you wont be able to comunicate with SWF(B) if SWF(B) doesnt have an instance name to it because flash wont know what to look for.
- pixelman0
Thx!