flash on 2010-7-8
♥0 |
Line 11 |
Modified 2010-07-08 19:51:00 |
MIT License
archived:2017-03-20 09:03:45
ActionScript3 source code
/**
* Copyright aasdb ( http://wonderfl.net/user/aasdb )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/sMQ7
*/
package {
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var tx:TextField = new TextField;
tx.text = "Hello, world";
addChild(tx);
}
}
}