flash on 2010-9-8
♥0 |
Line 15 |
Modified 2010-09-08 18:04:27 |
MIT License
archived:2017-03-20 07:40:27
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);
}
}
}