Be a Supporter!

Help with subtitles and buttons!

  • 366 Views
  • 3 Replies
New Topic Respond to this Topic
Final-X
Final-X
  • Member since: Aug. 11, 2008
  • Offline.
Forum Stats
Member
Level 02
Blank Slate
Help with subtitles and buttons! 2008-09-12 00:34:26 Reply

How do you make subtitles? I'm going to start adding subtitles to my animations does anyone know how I would make actionscript a button at the bottom for the viewer to turn them on and off. I also want the subtitle button to carry over to the every other part of the movie too and not just one frame.

Oh, and one on how to make a play/pause button too would be cool too if possible.

uyersuyer
uyersuyer
  • Member since: May. 15, 2002
  • Offline.
Forum Stats
Member
Level 05
Blank Slate
Response to Help with subtitles and buttons! 2008-09-12 01:05:27 Reply

http://www.newgrounds.com/bbs/topic/3680 14

Relative to your interests.


"Whoever said 'winners never quit' obviously never considered addicts." - Hoeloe

BBS Signature
Kwing
Kwing
  • Member since: Jul. 24, 2007
  • Offline.
Forum Stats
Member
Level 45
Game Developer
Response to Help with subtitles and buttons! 2009-02-12 19:37:48 Reply

At 9/12/08 12:34 AM, Final-X wrote: How do you make subtitles? I'm going to start adding subtitles to my animations does anyone know how I would make actionscript a button at the bottom for the viewer to turn them on and off. I also want the subtitle button to carry over to the every other part of the movie too and not just one frame.

Oh, and one on how to make a play/pause button too would be cool too if possible.

I think there was a thread about subtitles like 30 minutes ago :P I redirected the guy to this link, and I'm redirecting you to it, too. The script is by me, of course *bows*
http://www.newgrounds.com/bbs/topic/1023 358
To the second part of your question, just make sure the button is on a layer that spans the length of the entire time you want the movie to play.

To the third part of your question, just use these on buttons:

on(release){;play();}
on(release){;stop();}

Or this on Movie Clips serving as buttons.

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

If I offer to help you in a post, PM me to get it. I often forget to revisit threads.
Want 180+ free PSP games? Try these links! - Flash - Homebrew (OFW)

Gimmick
Gimmick
  • Member since: Aug. 20, 2008
  • Offline.
Forum Stats
Member
Level 27
Programmer
Response to Help with subtitles and buttons! 2009-02-26 15:52:28 Reply

for the subtitles, make an mc and give it the var subtitles, and apply this as to the mc:
onClipEvent(load){
this._visible = false;
}
for the play button, make an mc and give it this as:
on(press){
_root.plsy();
}
and for the pause button:
on(press){
_root.stop();
}


Slint approves of me! | "This is Newgrounds.com, not Disney.com" - WadeFulp
"Sit look rub panda" - Alan Davies

BBS Signature