• 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.

Flash 5 Help

DrumminBoy

Golden Member
I have a preloader and a play button on my flash movie, but I'd like to make it so the button pops up after everything finishes loading. As it is now, the movie automatically starts playing once it loads. Anyone know how to do it? I'm new to flash and I'm just trying to learn, thanks
 
have the move that is loading start with a blank keyframe with a stop action...when the movie loads (onLoad) make a play button visible and when that button is clicked gotoAndPlay the start frame of the loaded movie?
 
thanks, that helps. I've got if figured out besides how to get the button to pop up when it finishes loading. do you know the exact code? thanks again
 
when u first start your movie have a lip of the "play" button and set its visible property to false

for the movie your loading (Assuming its a myClip.loadMovie?)

you should be able to go:

myClip.onLoad = function() {
playButton._visible = true;
}
 
Back
Top