flash on 2010-9-8 pasodania forked:0favorite:0lines:15license : MIT License modified : 2010-09-08 18:04:27 Embed Tweet 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); } } } Code Fullscreen Preview Fullscreen URLVariables text TextField addChild Sprite