In case Flash no longer exists; a copy of this site is included in the Flashpoint archive's "ultimate" collection.

Dead Code Preservation :: Archived AS3 works from wonderfl.net

flash on 2010-11-3

Get Adobe Flash player
by MITSU_HAL 03 Nov 2010
    Embed
/**
 * Copyright MITSU_HAL ( http://wonderfl.net/user/MITSU_HAL )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/pcUO
 */

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public var s:Sprite;
        public function FlashTest() {
            // write as3 code here..
            s = new Sprite();
            s.graphics.beginFill(0xFF0000);
            s.graphics.drawCircle(0,0,40);
            s.graphics.endFill();
            addChild(s);
            s.x = stage.stageWidth/2;
            s.y = stage.stageHeight/2;
            
        }
    }
}