Forum Topic: AS: Sound

(21,662 views • 98 replies)

This topic is 4 pages long. [ 1 | 2 | 3 | 4 ]

<< < > >>
None

Denvish

Reply To Post Reply & Quote

Posted at: 2/11/05 09:03 AM

Denvish DARK LEVEL 46

Sign-Up: 04/25/03

Posts: 16,236

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

None

Afro-Ninja

Reply To Post Reply & Quote

Posted at: 2/11/05 09:17 AM

Afro-Ninja EVIL LEVEL 37

Sign-Up: 03/02/02

Posts: 13,464

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

None

carmelhadinosaur

Reply To Post Reply & Quote

Posted at: 2/11/05 09:21 AM

carmelhadinosaur LIGHT LEVEL 45

Sign-Up: 06/23/03

Posts: 7,658

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

None

rem11

Reply To Post Reply & Quote

Posted at: 6/7/05 04:54 PM

rem11 NEUTRAL LEVEL 07

Sign-Up: 11/12/04

Posts: 114

how do you add your own sound


None

Nemo

Reply To Post Reply & Quote

Posted at: 6/7/05 04:55 PM

Nemo LIGHT LEVEL 34

Sign-Up: 06/13/03

Posts: 1,895

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.


Happy

rem11

Reply To Post Reply & Quote

Posted at: 6/7/05 06:20 PM

rem11 NEUTRAL LEVEL 07

Sign-Up: 11/12/04

Posts: 114

thanx alot mate


None

Toast

Reply To Post Reply & Quote

Posted at: 6/10/05 11:31 AM

Toast DARK LEVEL 09

Sign-Up: 04/02/05

Posts: 8,921

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 >:(
^_^


None

Denvish

Reply To Post Reply & Quote

Posted at: 6/10/05 12:48 PM

Denvish DARK LEVEL 46

Sign-Up: 04/25/03

Posts: 16,236

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

None

Toast

Reply To Post Reply & Quote

Posted at: 6/10/05 12:58 PM

Toast DARK LEVEL 09

Sign-Up: 04/02/05

Posts: 8,921

Oh,I didn't notice it.Thanks!


None

Denvish

Reply To Post Reply & Quote

Posted at: 6/28/05 07:07 AM

Denvish DARK LEVEL 46

Sign-Up: 04/25/03

Posts: 16,236

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

None

Hopps

Reply To Post Reply & Quote

Posted at: 6/28/05 08:50 AM

Hopps NEUTRAL LEVEL 09

Sign-Up: 05/13/04

Posts: 19

Not bad example there.

- Hopps


None

Glaiel-Gamer

Reply To Post Reply & Quote

Posted at: 6/28/05 08:57 AM

Glaiel-Gamer NEUTRAL LEVEL 27

Sign-Up: 12/28/04

Posts: 8,053

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


None

TrueDarkness

Reply To Post Reply & Quote

Posted at: 6/28/05 10:08 AM

TrueDarkness EVIL LEVEL 27

Sign-Up: 08/31/04

Posts: 4,718

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?


None

Denvish

Reply To Post Reply & Quote

Posted at: 6/28/05 10:59 AM

Denvish DARK LEVEL 46

Sign-Up: 04/25/03

Posts: 16,236

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

None

TrueDarkness

Reply To Post Reply & Quote

Posted at: 6/28/05 11:11 AM

TrueDarkness EVIL LEVEL 27

Sign-Up: 08/31/04

Posts: 4,718

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!


None

Denvish

Reply To Post Reply & Quote

Posted at: 6/30/05 10:46 AM

Denvish DARK LEVEL 46

Sign-Up: 04/25/03

Posts: 16,236


None

Streetproject

Reply To Post Reply & Quote

Posted at: 8/9/05 11:09 PM

Streetproject EVIL LEVEL 14

Sign-Up: 09/08/03

Posts: 422

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?


None

AGH

Reply To Post Reply & Quote

Posted at: 8/10/05 08:05 AM

AGH NEUTRAL LEVEL 21

Sign-Up: 06/07/04

Posts: 3,994

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.


None

azzazin

Reply To Post Reply & Quote

Posted at: 8/15/05 07:09 AM

azzazin NEUTRAL LEVEL 07

Sign-Up: 07/24/05

Posts: 41

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?


None

Kipling

Reply To Post Reply & Quote

Posted at: 8/15/05 09:33 AM

Kipling NEUTRAL LEVEL 13

Sign-Up: 05/04/04

Posts: 2,641

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.


None

azzazin

Reply To Post Reply & Quote

Posted at: 8/18/05 06:13 AM

azzazin NEUTRAL LEVEL 07

Sign-Up: 07/24/05

Posts: 41

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


None

SuicideMessiah

Reply To Post Reply & Quote

Posted at: 9/6/05 08:21 PM

SuicideMessiah EVIL LEVEL 06

Sign-Up: 07/17/05

Posts: 61

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


None

Rustygames

Reply To Post Reply & Quote

Posted at: 9/6/05 08:49 PM

Rustygames LIGHT LEVEL 18

Sign-Up: 05/07/05

Posts: 6,662

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


None

SuicideMessiah

Reply To Post Reply & Quote

Posted at: 9/6/05 08:51 PM

SuicideMessiah EVIL LEVEL 06

Sign-Up: 07/17/05

Posts: 61

yup nvm im a dumbass got it now


None

TelaFerrum

Reply To Post Reply & Quote

Posted at: 9/6/05 09:14 PM

TelaFerrum NEUTRAL LEVEL 06

Sign-Up: 02/21/05

Posts: 404

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.


None

piefi

Reply To Post Reply & Quote

Posted at: 10/1/05 03:41 PM

piefi EVIL LEVEL 07

Sign-Up: 05/07/05

Posts: 371

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


None

Starogre

Reply To Post Reply & Quote

Posted at: 10/1/05 04:14 PM

Starogre NEUTRAL LEVEL 18

Sign-Up: 05/08/04

Posts: 1,711

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.

BBS Signature

None

Starogre

Reply To Post Reply & Quote

Posted at: 10/1/05 04:16 PM

Starogre NEUTRAL LEVEL 18

Sign-Up: 05/08/04

Posts: 1,711

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

BBS Signature

None

JD77

Reply To Post Reply & Quote

Posted at: 10/1/05 04:44 PM

JD77 NEUTRAL LEVEL 17

Sign-Up: 03/30/05

Posts: 1,059

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

None

Rammer

Reply To Post Reply & Quote

Posted at: 10/1/05 06:04 PM

Rammer DARK LEVEL 32

Sign-Up: 06/08/03

Posts: 4,331

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


All times are Eastern Standard Time (GMT -5) | Current Time: 02:34 AM

<< Back

This topic is 4 pages long. [ 1 | 2 | 3 | 4 ]

<< < > >>
You need a Grounds Gold Account to post on the NG BBS! If you don't have one, click here to sign up now! It's fast, free, and easy — and opens up tons of great NG features!