flash on 2009-8-6
♥0 |
Line 13 |
Modified 2009-08-06 06:37:26 |
MIT License
archived:2017-03-20 04:10:15
ActionScript3 source code
/**
* Copyright maxpop ( http://wonderfl.net/user/maxpop )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/tlKi
*/
package {
import flash.display.Sprite;
import flash.text.TextField;
public class FlashTest extends Sprite {
public function FlashTest() {
var text:TextField = new TextField();
text.text = "hej";
addChild(text);
text.x = 100;
text.y = 100;
}
}
}