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-6-25

Get Adobe Flash player
by 12CG03murata 25 Jun 2010
    Embed
/**
 * Copyright 12CG03murata ( http://wonderfl.net/user/12CG03murata )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/qXN4
 */

package {
    import flash.display.Sprite;
    import flash.events.Event;
    public class Anime extends Sprite {
        public function Anime() {
            addEventListener(Event.ENTER_FRAME, move);
        }
        
        public function move(e) {
            x = x + 1;
            graphics.beginFill(0xFF0000 + x);
            graphics.drawCircle(100 + x,100 + x,100);   
        }
    }
}