雑多なテスト用

by bkzen
...
@author jc at bk-zen.com
♥0 | Line 14 | Modified 2011-02-10 01:24:54 | MIT License
play

ActionScript3 source code

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

package {
    import flash.text.TextField;
    import flash.display.Graphics;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var txt:TextField = new TextField();
            addChild(txt);
            txt.width = stage.stageWidth;
            txt.height = stage.stageHeight;
            txt.text = loaderInfo.url;
        }
    }
}