flash on 2014-11-14
♥0 |
Line 13 |
Modified 2014-11-14 22:35:35 |
MIT License
archived:2017-03-20 09:15:53
ActionScript3 source code
/**
* Copyright jax ( http://wonderfl.net/user/jax )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/vEQo
*/
package {
import flash.text.TextFieldType;
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var tf:TextField = new TextField;
tf.type = TextFieldType.INPUT;
tf.wordWrap = true;
addChild(tf);
}
}
}