Hi guys - I hope someone can help with this one.
I have a movie clip inside my swf, that I am trying to script as a button. However, when I script it to go to frame 100 of my scene (for example)it goes to frame 100 of the movie clip, as opposed to the desired frame of the main movie.
I’m sure its a simple problem, but i am well and truly stuck! Any help would be great…
Just use your movie clip as the button.
create your movie clip…
On your movieclip add these actions…
on (release){
gotoAndPlay(100);
}
MX allows for button events to be applied to a movie clip. I think that is a great improvement.
Unfortunately, this is what I’m doing. But Flash is not ‘looking’ ouside of the movie clip. The scripting you suggested only takes the movie clip to frame 100, not the actual movie.
Any other suggestions?
Oops, my mistake…
on (release) {
_root.gotoAndPlay(100);
}
I left out _root.
ahhh I see!
nice one mate. That seems to have done the job!
Cheers again mate!
No problem, I am glad I could help