Everything in this movie happens right on the main scene (scene 1)
At about frame 50 I have a movie clip load that I created. It’s not an extrnal movie from a different .fla file, it was created in the “challenge.fla file” I just load it onto the main time line.
My question is this - I am trying to put stop commands for the audio and the effects happening on the main timeline (I am creating an interactive type presentation) and what I need to do is be able to stop the loaded movie clip in the middle of it’s animation with the same button that stops all the action on the main timeline.
I really dont know what to do. Could someone please help?
Ok - this is what I have right now that seems to work, only when testing it, I get a syntax error if the _root.main.graph isnt loaded yet… is there a better way to do it?
on (release) {
tellTarget ("main") {
stop();
}
}
on (release) {
tellTarget ("_root.main.graph") {
if (_framesloaded =1) {
stop();
}
}
}