クラスロードの元ネタ。

by poepoemix
http://wonderfl.net/c/kueD
こちらで、このクラスをロードさせて動作実験しています。
♥0 | Line 20 | Modified 2012-06-25 20:08:17 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public var t:String = "aiueo";
        public static var H:String = "hotMot";
        public function FlashTest() {
            // write as3 code here..
            
        }
        public function getTest():String {
            return "hogehoge";
        }
        public static function staticHoge():String {
            return "hogeaiueo";
        }

    }
}

class Test {
    public function data():String {
        return "test";
    }
}