PDA

View Full Version : Scripting The Scene To Play


macdabby
09-03-2001, 05:05 PM
Hi,

heres the heirarchy, i have the scene, with a movie clip inside of it, and that movie clip has a button inside of it. when the scene gets to a script, it stops and it tells the movie clip to play, and then when the button in the movie clip is pressed it tells the scene to play again.

What script do i use to make the scene play from inside that movie clip?

Right now i have :
Scene1.play()

this doesnt seem to work. Any ideas?

Moodles
09-03-2001, 11:52 PM
gotoAndPlay("Scene1", "frameLabel")

Moodles
09-03-2001, 11:56 PM
Hang on thats wrong. I have used this in my current project and it works for me.

on (release){
_root.gotoAndPlay("labelName");
}

Hope that does it.

Jesse
09-04-2001, 07:38 AM
or to continue from where you are:
_root.play();