Question
Target a frame in a movieClip
I have buttons in a movie clip which are placed on the main
time line. I also have movieclips placed on single frames (25, 30,
35, etc) on the main time. When a button is released I want two
things to happen -
- the playhead to go to a frame on the main time line where the movie clip is placed - which I can do with this code -
on (release) {
this._parent.gotoAndStop("25");
- then I'd like it to target a certain frame inside the movieClip with a var number (var number already generated). This is where I'm stuck. What is the path I use to target the frame inside the movie clip???
Thanks for any help,
Dave
- the playhead to go to a frame on the main time line where the movie clip is placed - which I can do with this code -
on (release) {
this._parent.gotoAndStop("25");
- then I'd like it to target a certain frame inside the movieClip with a var number (var number already generated). This is where I'm stuck. What is the path I use to target the frame inside the movie clip???
Thanks for any help,
Dave