I am trying to load a movie into an instance of “empty_mc” in Scene 3 of my application using the following code, but nothing happens. Can somebody see what I’m doing wrong here…
The code is as follows:
on (release) {
this.createEmptyMovieClip(“empty_mc”, 5);
empty_mc._x = empty_mc._y = 50;
empty_mc.loadMovie(“FraninIraq.swf”);
}