Flash 5 Help

DrumminBoy

Golden Member
Mar 10, 2002
1,995
0
0
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
 

Drakkon

Diamond Member
Aug 14, 2001
8,401
1
0
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?
 

DrumminBoy

Golden Member
Mar 10, 2002
1,995
0
0
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
 

Drakkon

Diamond Member
Aug 14, 2001
8,401
1
0
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;
}