View Single Post
Nutrox's Avatar Nutrox Nutrox is offline Super Moderator 17 Creative Assets 2006-11-23 #9 Old  
No problem.

There is also the Sound.onLoad event that you can use when the sound has loaded... if you don't need any load progress info.

ActionScript Code:
  1. mySound.onLoad = function():Void
  2. {
  3.    trace("mySound has loaded");
  4. }
  5.  
  6. mySound.load("file.mp3");
Reply With Quote