forked from: おみくじ

by okoi forked from おみくじ (diff: 2)
♥0 | Line 11 | Modified 2012-01-01 17:01:03 | MIT License
play

ActionScript3 source code

/**
 * Copyright okoi ( http://wonderfl.net/user/okoi )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/2iZ5
 */

// 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>";
        }
    }
}