2006年06月26日
ActionScript3.0をチェック
ActionScript3.0 をチェックしてみた。画面に赤い丸を描くだけのプログラム。
---(
package {
import flash.display.MovieClip;
import flash.display.Graphics;
public class test extends MovieClip
{
public function test()
{
this.graphics.beginFill(0xFF0000);
this.graphics.drawCircle(50,50,30);
this.graphics.endFill();
}
}
}
---)
トラックバック
このエントリーのトラックバックURL:
http://aoi-project.com/presents/mt/mt-tb.cgi/5