flash on 2010-1-10
♥0 |
Line 13 |
Modified 2010-01-10 14:47:30 |
MIT License
archived:2017-03-20 15:13:34
ActionScript3 source code
/**
* Copyright hacker_yk666qry ( http://wonderfl.net/user/hacker_yk666qry )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/dC2G
*/
package {
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var fld:TextField = new TextField();
fld.text = "こんにちは";
fld.x = 100;
fld.y = 40;
addChild(fld);
}
}
}