ActionScript for Skip Button?

MainFramed

Diamond Member
May 29, 2002
5,981
1
0
Is there a actionscript for a skip button in flash, or just apply it to text? or do you have to do something...if so what might that be?

All help well appracited.

TIA!
 

royaldank

Diamond Member
Apr 19, 2001
5,440
0
0
Create a button. When pressed, jump past the intro frames or go ahead and load the next movie in line.
 

Confused

Elite Member
Nov 13, 2000
14,166
0
0
Ideally you will give an option to avoid the annoying flash introduction and actually get to the site, for those of us who don't have Flash installed on their browsers.
 

bchalker

Golden Member
Feb 17, 2000
1,204
0
0
For a MovieClip "button:

buttonName.onRelease = function(){
gotoAndPlay("siteAfterIntro");
}

For a Button "button":

on(release){
gotoAndPlay("siteAfterIntro");
}