flash sound q?
flash sound q?
Out of context: Reply #2
- Started
- Last post
- 2 Responses
- luke0
easy
just male more keyframes - like every 10 frames (depends on how fast you wanrt it to fade) first initialize the sound
Snd1 = new Sound(Snd1);Snd1.attachSound("sound01");
Snd1.setVolume(0);
Snd1.start(0, 999);
each following keyframe just
lower the volumeSnd1.setVolume(90);
Snd1.setVolume(80);
.
.
.i bet you won´t make it w/o actionscript here.
don´t forget the soundname (here "sound01") must be defined in the library sound properties!