Hi,
I'm completely flummoxed by this one. I have a movie inside another movie that I am attempting to control with a button in the outer movie (I hope that makes sense!). I assumed that I could use tellTarget to send the inner movie a stop command but it doesn't seem to work. I have called the inner movie "balls" and used the following actionscript (in the stop button) to stop it:
Am I doing something stupid here?
I'm completely flummoxed by this one. I have a movie inside another movie that I am attempting to control with a button in the outer movie (I hope that makes sense!). I assumed that I could use tellTarget to send the inner movie a stop command but it doesn't seem to work. I have called the inner movie "balls" and used the following actionscript (in the stop button) to stop it:
Code:
on (release) {
with (balls) {
stop ();
}
}
Am I doing something stupid here?