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 2011-4-9

Get Adobe Flash player
by telexxxxxxx 09 Apr 2011
    Embed
/**
 * Copyright telexxxxxxx ( http://wonderfl.net/user/telexxxxxxx )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/rWRT
 */

package {
    import flash.events.Event;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public var bolita:Sprite = new Sprite ();
        
        public function FlashTest() {
            // write as3 code here..
            this.bolita.graphics.beginFill (0xff0000);
            this.bolita.graphics.drawCircle (0,0,50);
            this.addChild(this.bolita)
            this.bolita.x=100
            this.bolita.y=100
            this.addEventListener(Event.ENTER_FRAME,this.tellex
        }
        
    }
}