flash on 2010-5-18
♥0 |
Line 11 |
Modified 2010-05-18 08:20:05 |
MIT License
archived:2017-03-20 09:48:05
ActionScript3 source code
/**
* Copyright smart_ant ( http://wonderfl.net/user/smart_ant )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/mi6a
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var tf:TextField = new TextField;
tf.text = "hello world ";
addChild(tf);
}
}
}