I have tryed the andreas suggestion, but don't work. The jingle volume
continue to be the previous (fadingIn to 90).
But the strange news is another: if I do a test movie inside Flash, the
sound of jingle is loaded and faded (code below), but if I test within HTML
page, no sound is loaded...
How is possible?
<code>
track = new Sound();
track.loadSound("everybody.mp3", true);
track.setVolume(0);
var vol = 0;
fade = setInterval(fadeIn, 100);
function fadeIn() {
 vol += 1;
 track.setVolume(vol);
 if (vol>=90) {
  clearInterval(fade);
 }
}
</code>


     Enrico Tomaselli
  +> web designer <+
  [EMAIL PROTECTED]
http://www.metatad.it

_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to