flash on 2010-2-22
♥0 |
Line 11 |
Modified 2010-02-22 23:19:40 |
MIT License
archived:2017-03-20 14:34:57
ActionScript3 source code
/**
* Copyright mash ( http://wonderfl.net/user/mash )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/ewo4
*/
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;
tf.text = "Hello, World!";
addChild( tf );
}
}
}