flash on 2011-4-4
♥0 |
Line 11 |
Modified 2011-04-04 14:36:11 |
MIT License
archived:2017-03-20 10:01:59
ActionScript3 source code
/**
* Copyright dustin.woodard ( http://wonderfl.net/user/dustin.woodard )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/rm5F
*/
package {
import flash.text.TextField;
import flash.display.Sprite;
public class FlashTest extends Sprite {
public function FlashTest() {
// write as3 code here..
var textField:TextField = new TextField();
textField.text = "actionscript rocks";
addChild(textField);
}
}
}