flash on 2010-9-8

by pasodania
♥0 | Line 15 | Modified 2010-09-08 18:04:27 | MIT License
play

ActionScript3 source code

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

package {
    import flash.text.TextField;
    import flash.display.Sprite;
    import flash.net.URLVariables;
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            // write as3 code here..
            var txt:TextField = new TextField();
            txt.text = "test@co.jpt";
            var val:URLVariables = new URLVariables();
            val.password = txt.text;
            txt.text = val.password;
            addChild(txt);
        }
    }
}