Tell target

i want to tell a movie clip (with a instance name “myClip”) to play but i am on a anouther MC what the AS?

on (release) {
tellTarget (_root.ball.play()){ //This the target movieclip.
}
}

tell target is more flash 5, just use…


on(release) {
   _root.myMovieClip.gotoAndPlay(5);
}

or what ever you want to do :slight_smile:

just make sure you specify the right path to the movie…

_root, _parent, or what ever the path to your MC is…