on (release) {
tellTarget ("/light") {
gotoAndPlay(2);
}
}
Ok the / is needed to go back a level to the root level.
stay away from using tell target. You could use this, much less code and dot syntax is much easier believe me
on (release) {
_root.light.gotoAndPlay(2);
}
in this code you are going back to the root level (main timeline )and saying look for the mc called light and send the playhead to play from frame2:asian: