package{
import flash.display.MovieClip;
public class MySoundContainer extends MovieClip {
var _mySound:MySound = new MySound(); // my custom sound imported in library
public function _OnButtonClick(e:MouseEvent) : void {
_mySound.play(); // first call shows delay in play
}
}
}
第一次单击按钮时,我看到播放声音有明显的延迟。
是否可以预先为嵌入文件预加载音效?