flash on 2016-7-16
♥0 |
Line 16 |
Modified 2016-07-16 19:28:30 |
MIT License
archived:2017-03-20 10:10:12
ActionScript3 source code
/**
* Copyright and ( http://wonderfl.net/user/and )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/mjCu
*/
package {
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
private var tf:TextField;
private var someVarr:Array = [];
public function FlashTest() {
// write as3 code here..
tf = new TextField();
tf.width = 400;
tf.height = 400;
tf.textColor = 0;
addChild(tf);
tf.appendText("000\n");
}
}
}