I have two movie clips and both are in different frames of Scene 1, I wanted to link an enter button on the mc to frame 3 in the scene which will play movie clip two. Now I got that to work with the AS:
on (release) {
tellTarget ("_root"){
gotoAndStop (3);
}
}
However, it seems that the first movie clip is playing behind the second...
Here is a sample so you understand where my problem it, drag your mouse on the second clip where the enter button was on the first clip.
http://www.depictionmedia.com/gallery/photogallery.html


Reply With Quote