Flash Eff with Images

Posted by Lin777 
Flash Eff with Images
February 01, 2009 04:12AM
To Whom It May Concern,

I'd like to add sound effects to each Flash Eff pattern. I know you have the sound for buttons. How exactly would I go about making sound effects for my swf?

Thanks in advance,

Lin



Edited 2 time(s). Last edit at 02/01/2009 05:13AM by Lin777.
Re: Flash Eff with Images
February 02, 2009 01:53PM
Hello

There are two different ways to add sounds to your animation:
1. You can add and play sounds using the code like this:
var sound = new Sound();
var channel: SoundChannel = new SoundChannel();
var soundURL: String = "soundPath";
sound.load(new URLRequest(soundURL));
channel = sound.play();

2.Or you can do this by importing the sound in the library and then create a new layer where you will place the sound . Here is a link to a tutorial on how to import sounds:
[www.partnersinrhyme.com]
Re: Flash Eff with Images
February 02, 2009 07:48PM
Thank you for your help...

Lin



Edited 3 time(s). Last edit at 02/03/2009 02:37AM by Lin777.
Sorry, you do not have permission to post/reply in this forum.