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-10-19

Get Adobe Flash player
by bkzen 19 Oct 2010
    Embed
/**
 * Copyright bkzen ( http://wonderfl.net/user/bkzen )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/rLxm
 */

package {
    import flash.display.Sprite;
    import com.bit101.components.Label;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var sp:Sprite = new Sprite();
            addChild(sp);
            sp.x = sp.y = 10.5;
            new Label(this, 10.5, 10.5, "test moja");
            new Label(sp, 10.5, 10.5, "test moja moja");
        }
    }
}