2009年8月30日 星期日

偵測flash影片片段是否播放完畢

假定動畫片段名稱為test_mov, 讓該片段播放完後就消失

test_mov.onEnterFrame=function(){
if (this._currentframe==this._totalframes) {
this._visible=false;
}
}

沒有留言: