00:00
00:00
Newgrounds Background Image Theme

christopher54000 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!

AS: Sound 2005-02-11 09:03:42


SOUND

To get a sound into Flash: FILE>IMPORT TO LIBRARY>BROWSE>OK

BASIC USE:
Select a layer. Drag the sound from the Library to the Stage.
or
Select a layer. In the right-hand end of the PROPERTIES panel, use the dropdown to select a sound.

EVENT
If you want to loop your sound, you're generally best of choosing EVENT>REPEAT>500 in the other boxes on the PROPERTIES panel. Only one frame of the waveform has to be visible on the timeline for the whole sound to be played. NOTE: if you're planning on making loops, import .wav in preference to .mp3. Clean loops using .mp3 are virtually impossible.

STREAM
If you need the sound to be in sync (eg voiceovers), then choose STREAM. Streaming usually also knocks the .swf size down by a bit, too. If you're using STREAM, then make sure you create enough frame that the whole sound file wave shows on the timeline; any part of the waveform that's not visible won't be played.

EXPORTING:
Biggest problem with new Flash users is unecessarily large filesize due to uncompressed audio. Click FILE>PUBLISH SETTINGS>FLASH tab, and set Audio Stream and Audio Event to 64 kbps or lower (generally 32 kbps is good enough, if not 16). Press CTRL+ENTER to check the quality, and then check the size of the resulting swf - try to reach a good compromise.

ACTIONSCRIPTING:
If you're using a lot of sounds in your movie, you may want a way to manage them. There are two ways to do this (probably more).

No 1 - attachSound
Right-click your sound in the Library and select Linkage.
Tick the 'Export For Actionscript' box - the Export in First Frame box should tick itself
In the 'Identifier' box, type 'sound1'

Select the first frame of your movie, and add these actions:
bgSound = new Sound(this);
bgSound.attachSound("sound1");

When you want the sound to play, use these Actions:
bgSound.start(0, 99);

That's it. The problem now is that it loops itself, so if you want it to stop, you'll have to use stopAllSounds(); or bgSound.stop();

For more information, have a look at these:
Flash>HELP>ACTIONSCRIPT DICTIONARY>SOUND
http://www.flashbax.com/attachsound.htm
http://www.hed.swin.edu.au/design/tutorials/flash/attachsound/index.php

No 2 - Sound MC
(this is the method I generally use, it suits me but may not suit others)
Create a new MC. Give it two keyframes.
On the first frame, add a stop(); action
With the second frame selected, use the Sound dropdown at the right-hand end of the PROPERTIES bar to select a sound.
If you want it to loop:
Set it to EVENT, and select the number of times you wish it to loop. On the second frame, add gotoAndStop(1);
If you want it to stream:
Set it to STREAM, and stretch the MC out to however many frames the waveform takes. After the last waveform frame, add a keyframe (F6), and add gotoAndStop(1);

On the main stage, drag a copy of the MC from the library and give it the instance name 'Sound01'
When you want to play a sound, use:
_root.Sound01.gotoAndPlay(2);

I know I've missed a lot of stuff about sound out in this, but hopefully it will give you a basic idea to be starting from

Links:
http://www.utexas.edu/learn/flash/sound.html
http://www.macromedia.com/support/flash/how/expert/sound/sound05.html
http://www.macromedia.com/support/flash/how/expert/sound/sound07.html


- - Flash - Music - Images - -

BBS Signature

Response to AS: Sound 2005-02-11 09:17:19


Also, something quick to add- when streamed sounds go out of sync, another way to fix it is to insert another layer and stream .5 seconds of silence (looped) for the length of the movie. As long as something is always streaming, all sounds should line up fine


BBS Signature

Response to AS: Sound 2005-02-11 09:21:37


Thats very good you're doing this Denvish, and im sure alot will use it, even if they wont write... :P
Also, i think this site is great, and i've never seen anyone else but me putting a link to it ;D
http://www.stonewashed.net/sfx.html


BBS Signature

Response to AS: Sound 2005-06-07 16:54:22


how do you add your own sound

Response to AS: Sound 2005-06-07 16:55:39


At 6/7/05 04:54 PM, rem11 wrote: how do you add your own sound

Uhh, File > Import. If you want your OWN sound, you have to record it using Soundforge or Audacity, then Export as an MP3 or WAV.


BBS Signature

Response to AS: Sound 2005-06-07 18:20:19


thanx alot mate

Response to AS: Sound 2005-06-10 11:31:24


Really nice tutorials,one of the best in the AS section

P.S:Will you add my big physics tutorial to the AS section?Don''t you add it just because I am level 8 or what >:(
^_^


BBS Signature

Response to AS: Sound 2005-06-10 12:48:44


At 6/10/05 11:31 AM, Dark_Toaster wrote: P.S:Will you add my big physics tutorial to the AS section?Don''t you add it just because I am level 8 or what >:(
^_^

I added it a couple of days ago

AS: Main


- - Flash - Music - Images - -

BBS Signature

Response to AS: Sound 2005-06-10 12:58:21


Oh,I didn't notice it.Thanks!


BBS Signature

Response to AS: Sound 2005-06-28 07:07:56


Quick link job. I don't generally use attachSound when I make Flash (I generally use Sound MCs), and this seems to work on all sounds that are playing in that situation.

Fading sounds in/out


- - Flash - Music - Images - -

BBS Signature

Response to AS: Sound 2005-06-28 08:50:56


Not bad example there.

- Hopps

Response to AS: Sound 2005-06-28 08:57:28


Man denvish it seems like you spend all your time helping people. Do you even have any time for flash?

Response to AS: Sound 2005-06-28 10:08:33


No 1 - attachSound
Right-click your sound in the Library and select Linkage.
Tick the 'Export For Actionscript' box - the Export in First Frame box should tick itself
In the 'Identifier' box, type 'sound1'

Select the first frame of your movie, and add these actions:
bgSound = new Sound(this);
bgSound.attachSound("sound1");

When you want the sound to play, use these Actions:
bgSound.start(0, 99);

That's it. The problem now is that it loops itself, so if you want it to stop, you'll have to use stopAllSounds(); or bgSound.stop();

Could these codes, if set properly, be used to make pause, play, and slow motion buttons that you often see in flashes these days. Maybe if you attack a movie clip and give it the actionscript settings and just recode those codes to make it work for a movie clip.

Could that work?

Response to AS: Sound 2005-06-28 10:59:46


At 6/28/05 08:57 AM, Glaiel_Gamer wrote: Man denvish it seems like you spend all your time helping people. Do you even have any time for flash?

I'm not actively making anything currently - I got halfway through a game for the GoG minigame challenge and then decided it was crap - so I'm doing these while I'm waiting for some fresh inspiration.

At 6/28/05 10:08 AM, True_Darkness wrote: Could these codes, if set properly, be used to make pause, play, and slow motion buttons that you often see in flashes these days. Maybe if you attack a movie clip and give it the actionscript settings and just recode those codes to make it work for a movie clip.

Could that work?

Well, not really, this code will only apply to sound. If you're looking for movie controls, feel free to dissect this - although it doesn't have a slo-mo button


- - Flash - Music - Images - -

BBS Signature

Response to AS: Sound 2005-06-28 11:11:47


Well, not really, this code will only apply to sound. If you're looking for movie controls, feel free to dissect this - although it doesn't have a slo-mo button

whoa! thanks a lot, thats exactly what I'm looking for. Adn, I didn't actually mean slow motion, I sorta meant like, a frame by frame button, each time you click it it goes up one frame, or back one frame, depending on the button. Anyway thanks a lot, im gonna be using this in a lot more flash movies now!

Response to AS: Sound 2005-06-30 10:46:46



- - Flash - Music - Images - -

BBS Signature

Response to AS: Sound 2005-08-09 23:09:36


bgSound = new Sound(this);
bgSound.attachSound("pan");
bgSound.start(0, 99);

i have multiple parts with this code, changing "pan" of course, but, i also have to change "bgSound" also right?

Response to AS: Sound 2005-08-10 08:05:51


At 6/30/05 10:46 AM, Denvish wrote: Thanks AGH for this link

Fixing problems with importing sound (Flash does not support this filetype)

PhoenixJ was the one I got the link from so any credit should be sent his way, especially considering that it's his site.

Response to AS: Sound 2005-08-15 07:09:05


im in scene 2 and frame 1 theres a on button for music i tipe in it this
on (press){
gotoandplay(scene 2, 1)
}
doesnt work :/
on (press){
gotoandplay('scene 2', 1)
}
doesnt work , and all similiar thigs dont work what to do?

Response to AS: Sound 2005-08-15 09:33:35


At 8/15/05 07:09 AM, azzazin wrote: im in scene 2 and frame 1 theres a on button for music i tipe in it this
on (press){
gotoandplay(scene 2, 1)
}
doesnt work :/
on (press){
gotoandplay('scene 2', 1)
}

That has nothing to do with sound at all.

Response to AS: Sound 2005-08-18 06:13:27


can someone give me actionscript how to make "on" button for music , i know off but i cant make that on button , soo help?

Response to AS: Sound 2005-09-06 20:21:00


the actionscrip to plau the sound doesnt work, says " must appear within on handler"

Response to AS: Sound 2005-09-06 20:49:02


At 9/6/05 08:21 PM, SuicideMessiah wrote: the actionscrip to plau the sound doesnt work, says " must appear within on handler"

* sigh
Thats because you are silly and you forgot to learn some VERY basic AS before jumping into this
try again this time read some of the help files that come with flash


- Matt, Rustyarcade.com

Response to AS: Sound 2005-09-06 20:51:10


yup nvm im a dumbass got it now

Response to AS: Sound 2005-09-06 21:14:28


At the moment I'm using streaming sound in a music video I'm doing, and because of this I can't make use of multiple scenes. An idea I considered using was putting streaming sound inside a movie clip and then using goto() each scene to match the movie clip sound with the main timeline. I was wondering whether the sound would still synch with the main timeline if it's inside a movie clip, and whether using ActionScript this way to make it synch through scenes would make the sound skip or become unsynchronized at all. Even if it's unlikely, I'd like to know if this could happen. I'll be glad if I can start using scenes.

Response to AS: Sound 2005-10-01 15:41:43


i have a voice over that is really quiet. how do i increase the volume in flash either manually or via AS?

Response to AS: Sound 2005-10-01 16:14:42


At 2/11/05 09:17 AM, Afro_Ninja wrote: Also, something quick to add- when streamed sounds go out of sync, another way to fix it is to insert another layer and stream .5 seconds of silence (looped) for the length of the movie. As long as something is always streaming, all sounds should line up fine

You could also put the streamed music/sound in a MC and extend the MC thru the whole time the sound is playing. This also gets syncing right.


the events are merely fictional, written, directed, and acted out by all who create them

BBS Signature

Response to AS: Sound 2005-10-01 16:16:13


Oh, and maybe add something about fading music in using AS or fading out music? Like if you get game over, you don't just want the music to skip STRAIGHT to sad music from happy or whatever...


the events are merely fictional, written, directed, and acted out by all who create them

BBS Signature

Response to AS: Sound 2005-10-01 16:44:09


lol how manny more u gonna make for AS main lol
(plz dont stop they are really good tuts!)

WTF! lol...


*User Page under construction*

BBS Signature

Response to AS: Sound 2005-10-01 18:04:29


you forgot loadSound (:

it loads a sound dynamically from a URL. works kinda like this

loadSound("http://rammerzworld.com/sound.m
p3", true)

the "true" in there sets it to stream the sound, i think.


snyggys