文章を表示する

by Nowloading_
♥0 | Line 16 | Modified 2011-09-16 23:29:47 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        private var bunsyo:Bunsyo;
        public function FlashTest() {
            // write as3 code here..
            bunsyo = new Bunsyo("あいうえお");
            addChild(bunsyo);
        }
    }
}

import com.actionscriptbible.Example;
class Bunsyo extends Example{
    public function Bunsyo(str:String){
        trace("-",str,"-");
    }    
}