flash on 2015-8-12

by asou_jp
♥0 | Line 11 | Modified 2015-08-12 16:39:52 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    import a24.tween.Tween24;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var bitmapData:BitmapData = new BitmapData(400,400);
            bitmapData.noise();
            addChild(new Bitmap(bitmapData));
        }
    }
}