Is it possible for a button in let’s say movie_1.swf, which is loaded on level 1, when clicked, to play a movie clip in movie_2.swf which is already loaded on level 2? Thank you for any help in advance. Thank you.
try that:
on(press){
_level2.mcInstanceName.play();
}
=)