Home
> FlashEff 1 (Discontinued version)
> Topic
Flash Eff with Images
Posted by Lin777
|
Flash Eff with Images January 31, 2009 10:12PM | Registered: 4 years ago Posts: 4 |
|
Re: Flash Eff with Images February 02, 2009 07:53AM | Admin Registered: 4 years ago Posts: 310 |
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]
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 01:48PM | Registered: 4 years ago Posts: 4 |
Sorry, only registered users may post in this forum.






