00:00
00:00
Newgrounds Background Image Theme

PsyKing77 just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Flash Pro 8 Play Button

759 Views | 4 Replies
New Topic Respond to this Topic

Flash Pro 8 Play Button 2006-07-27 22:29:37


UMM..
I'M STILL GETTIN THE HANG OF FLASH AND
I'M STUCK ON TRYING TO MAKE A PLAY BUTTON WORK
I CAN DRAW THE BUTTON
BUT:
THE ACTIONSCRIPT WON'T WORK SO COULD SOMEONE HELP?

Response to Flash Pro 8 Play Button 2006-07-27 22:34:06


Dont use all caps. Everyone will kill you if you do. There nothing else more but just follow instructions EXACTLY

Response to Flash Pro 8 Play Button 2006-07-27 22:34:27


On the button put:

on(release)
{
_root.play();
}

that should work.

Response to Flash Pro 8 Play Button 2006-07-27 22:35:24


Never use all cap posts.

Heres some script to work on a play button

on(release){
play();
}

Stop button

on(release){
stop();
}

replay button. (assuming your movie starts on frame one)

on(release){
gotoAndPlay(1);
}

Response to Flash Pro 8 Play Button 2006-07-27 23:00:59


thx guys