onClipEvent(load){ _big = 0; //bigフラグ _x = 160; _y = 0 -_root.IdNum*50; // コピー元のスプライトだった場合非表示にする if (eval("this") == _root.Char){_visible = 0;} } - onClipEvent( enterFrame ){ if(!_root.Stop){ // 移動の処理 _y += 8; } // 大きくする処理 if (_big){ _xscale += 150/4; _yscale += 150/4; if (_xscale >= 150 && _yscale >= 150){ _big = 0; } } // 画面外の処理 if ( _y > 350){ _y = 0; } } - on( rollOver ){ if(!_big && !_root.Stop) { _big =1; //死亡フラグを立てる _root.Stop =1; } }