I have a Flash project (main.swf
) that opens another .swf inside it via a button press:
my_btn.onRelease = function() {
loadMovie("otherFile.swf", "_level1");
};
How do I get otherFile.swf
to alter variables within main.swf
?
I'm using Flash Player 10 and ActionScript 2.0