flash on 2010-11-23
ActionScript3 source code
/**
* Copyright y_tama ( http://wonderfl.net/user/y_tama )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/gGYJ
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var textfield=new TextField;
textfield.text="Hello World!";
addChild(textfield);
}
}
}