flash on 2011-10-8
♥0 |
Line 11 |
Modified 2011-10-08 20:57:57 |
MIT License
archived:2017-03-20 03:25:53
ActionScript3 source code
/**
* Copyright points ( http://wonderfl.net/user/points )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/pmtG
*/
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();
addChild(tf);
tf.text = "hello";
}
}
}