alokwww
Technical User
- Dec 25, 2002
- 86
Hi,
I have a movie clip with an instance name of topRight
In the movie clip, the first frame has a stop action and the animation starts on the second frame.
I have the movie clip placed on stage.
I want the movie clip to play when it starts but I'm trying to figure out the way to do it without taking the stop action out from frame 1 of the movie clip.
I've tried putting:
topRight.gotoAndPlay(2); and also
_root.topRight.gotoAndPlay(2);
neither one worked.
I also tried to make a blank movie clip on stage and put the following in it:
onClipEvent(load) {
_root.topRight.gotoAndPlay(2);
}
It still didnt work.
Anyone know where I may have gone wrong.
I have a movie clip with an instance name of topRight
In the movie clip, the first frame has a stop action and the animation starts on the second frame.
I have the movie clip placed on stage.
I want the movie clip to play when it starts but I'm trying to figure out the way to do it without taking the stop action out from frame 1 of the movie clip.
I've tried putting:
topRight.gotoAndPlay(2); and also
_root.topRight.gotoAndPlay(2);
neither one worked.
I also tried to make a blank movie clip on stage and put the following in it:
onClipEvent(load) {
_root.topRight.gotoAndPlay(2);
}
It still didnt work.
Anyone know where I may have gone wrong.