I have a skip intro button on my flash movie but when I press it, it keeps on playing the intro and meanwhile the site loads up behind the intro… I can’t figure out how to get the intro to stop playing and go to frame 320 (where the site beings to load). Here’s the AS I’m using so far
you have a main movie… and you have a intro movie that gets loaded in to a target movieClip…
you should give the target movieClip an name like "introHolder"
you can give an mc a name… by selecting the empty movieClip and then in the prob window there is a textfield the whole way left… you can put the name there
Then right click the the skip intro button and select Actions in the popup menu… in the the window that opens put this code
on(release){
_root.holder.gotoAndPlay(320);
}
if you didn’t call you mc “holder” the you have to change it in the code ^^