Noob question: I have a SWF that is built using AS2 that is loaded into a SWF built in AS3. I just need to pass a variable from the AS2 SWF to the main timeline of the AS3 SWF. If BOTH were built in AS3, my path would be this:
ActionScript Code:
MovieClip(parent.parent.parent.parent).whatworkimage = "tm_larrydaisy_large.jpg";
But tracing this path from the AS2 SWF gives me an undefined. I tried changing the "parent" references to "_parent" and removing the "MovieClip" reference but to no avail.
What would be the equivalent path from the AS2 SWF to talk to the AS3 SWF?
Thanks.