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

ff: おみくじ

Get Adobe Flash player
by saharan 01 Jan 2012
/**
 * Copyright saharan ( http://wonderfl.net/user/saharan )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/exJz
 */

// forked from maxcaffy's おみくじ
package {
    import flash.text.TextField;
    import flash.display.Sprite;
    public class Hoge extends Sprite {
        public function Hoge() {
            // write as3 code here..
            var a:TextField = new TextField();
            stage.addChild(a);
            a.htmlText = "<b>大吉</b>"; 
        }
    }
}