In Macromedia Flash can you help on _root, _parent, and move to new scene...

Michael G

New member
...from movie clip? I have a show with 6 scenes in it.

In the first scene when Movie Clip A hits Movie Clip B it goes to scene 2. this works fine.

However, in Scene 2 I have Movie Clip A hits Movie Clip B it should go to Scene 3 but it doesn'!. It still goes to Scene 2, 1.

I have tried these actions...

onClipEvent (enterFrame) {
if (_root.circle, hitTest(_root.checkpoint)) {
_root.gotoAndplay("Scene 3", 1);
}
}


I have also tried

onClipEvent (enterFrame) {
if (_root.circle, hitTest(_root.checkpoint)) {
_parent.gotoAndplay("Scene 3", 1);
}
}

I have also tried

Going to the second frame in Scene 2 and creating a button. The button is the only thing on the page and I put

gotoAndplay("Scene 3", 1) BUT IT STILL goes back to Scene 2, 1.

_parent.gotoandplay("Scene_3", 1)

_root.gotoandplay ("Scene_3", 1)

_parent._parent.gotoandplay("Scene_3", 1)



Any advice and I will be THANKFUL
 
Back
Top