Minimal Components Editor

by WLAD
Link : 

https://sites.google.com/site/cutitinhalffiles/content/swf/MinimalComponentsEditor-0.6.1.swf?attredirects=0

Drop a comment if you want me to link the source code somewhere.

ps . drag and drop components from left panel to stage
♥0 | Line 27 | Modified 2017-02-09 02:37:34 | MIT License
play

ActionScript3 source code

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

package {
    import flash.display.Sprite;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.text.TextField;
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            
            graphics.beginFill( 0 );
            graphics.drawRect( 0, 0, 2000, 2000 );
            graphics.endFill();
            graphics.beginFill( 0xFFFFFF );
            graphics.drawCircle( 230, 230, 60 );
            graphics.endFill();
            
            var tf:TextField = new TextField();
            addChild( tf );
            tf.autoSize = "left";
            tf.text = "Loading...";
            tf.textColor = 0xFFFFF;
            tf.scaleX = tf.scaleY = 4;
            tf.y = 110;
            
            var myLoader:Loader = new Loader();                     
            var url:URLRequest = new URLRequest("https://sites.google.com/site/cutitinhalffiles/content/swf/MinimalComponentsEditor-0.6.1.swf?attredirects=0"); 
            myLoader.load(url);                                     
            addChild(myLoader);  
        }
    }
}