forked from: flash on 2009-8-6
forked from flash on 2009-8-6 (diff: 1)
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/8UE4
*/
// forked from maxpop's flash on 2009-8-6
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;
}
}
}
