08/04/05 15:41:00 3U0BnIiH
>>324
意図と違ったらすまんが↓みたいなのでどうかな
package {
import flash.display.Sprite;
import flash.events.*;
import flash.display.Graphics;
public class GrowCircle extends Sprite {
var rx:Number = 0;
function GrowCircle() {
this.addEventListener(Event.ENTER_FRAME,doEnterFrame);
}
function doEnterFrame(e:Event):void {
rx++;
if(rx > 100){
this.removeEventListener(Event.ENTER_FRAME,doEnterFrame);
}
this.graphics.clear();
this.graphics.lineStyle(3,0xFF0000);
this.graphics.drawCircle(200,200,rx);
}
}
}