this.onEnterFrame? = function() {
nParcent = (_root.getBytesLoaded()/_root.getBytesTotal())*100;//何%読み込んだか計算してnParcentに代入 _xscale = nParcent;//それを_xscale(幅)に代入 if (_xscale == 100) {//100%読み込んだ時点で再生 _root.play(); }
}; _root.stop();