flash on 2010-1-16
♥0 |
Line 11 |
Modified 2010-01-16 16:50:22 |
MIT License
archived:2017-03-20 15:11:56
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/rWUd
*/
package {
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var _tf:TextField = new TextField();
_tf.text = "hello!";
addChild(_tf);
}
}
}