flash on 2012-3-17

by umhr
♥0 | Line 14 | Modified 2012-03-17 18:48:21 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Bitmap;
    import flash.display.Sprite;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            
            var list:Array = [];
            list[0] = "abc";
            list[1] = 123;
            list[2] = new Bitmap();
            
            list.push(new Sprite());
            
            var n:int = list.length;
            
            
            
        }
    }
}