• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

ActionScript for Skip Button?

MainFramed

Diamond Member
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!
 
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.
 
For a MovieClip "button:

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

For a Button "button":

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