I’m trying to get a menu to appear ontop of an existing external jpg that’s loaded onto layer 4. So i made a MC with buttons on it, but it’s not a external .swf, it’s just in the library of my main.fla
so here’s the code:
[AS]
on (release) {
_root.createEmptyMovieClip(“holder3”, 3);
loadMovie(“resume_middle.jpg”, “holder3”);
holder3._x = 160 ;
holder3._y = 10 ;
_root.createEmptyMovieClip(“holder7”, 7);
attachMovie(“resume_menu”, “resume_menu”, 7);
holder7._x = 160 ;
holder7._y = 10 ;
}
[/AS]
The jpg loads just fine, but the MC with the buttons on it isn’t showing up like i thought it would. How can i do that?