flash on 2010-4-30
♥0 |
Line 13 |
Modified 2010-04-30 18:52:08 |
MIT License
archived:2017-03-20 16:27:26
ActionScript3 source code
/**
* Copyright cpu_t ( http://wonderfl.net/user/cpu_t )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/lJlJ
*/
package {
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
graphics.beginFill(0xCCCCCC);
graphics.drawCircle(100,100,10);
addEventListener("enter_frame",function(e:*):void
{
this.x++;
});
}
}
}