Scenes

hi –

i have 5 scenes in my .swf. on one scene i have a movie clip that houses a music loop. the instance of this movie clip i named “trackone”.

on every other scene i have a button that has the following action:

on release {
tell target (“trackone”) {
stop();
}
}

when i test the movie i get the following error message:

Target not found: Target=“trackone” Base="_level0"

can’t a button with an action on one scene find a movie clip (that is named) on another? what could be going wrong?

thanks,

matt

Use the very same actions you use within same level , just define in the path
before the action the level number .

Target Label name NAME in level 4
_level4.gotoAndPlay(“NAME”);

I hope this helps