
Код:
_root.createEmptyMovieClip("soundCont_mc",_root.getNextHighestDepth());
//
var intro_snd:Sound = new Sound(_root.soundCont_mc);
intro_snd.attachSound("Intro");
intro_snd.start(0,999);
var vol;
var sndID;
soundOff = function () {
vol = intro_snd.getVolume();
sndID = setInterval(_soundOff, 100);
}
_soundOff = function () {
vol -=10;
intro_snd.setVolume(vol);
trace(vol);
if(vol<=0) {
clearInterval(sndID);
}
}
soundOff();