flash on 2012-3-11
♥0 |
Line 16 |
Modified 2012-03-11 15:05:47 |
MIT License
archived:2017-03-30 07:57:27
ActionScript3 source code
/**
* Copyright umhr ( http://wonderfl.net/user/umhr )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/t3zm
*/
package {
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.text = "abcdefga桑田 TSUNAMI歌える日を願うbcdefga桑田 TSUNAMI歌える日を願うbcdefga桑田 TSUNAMI歌える日を願うbcdefga桑田 TSUNAMI歌える日を願う";
tf.width = 400;
tf.height = 200;
tf.border = true;
tf.wordWrap = true;
tf.type = "input";
addChild(tf);
}
}
}