9 lines
252 B
Plaintext
9 lines
252 B
Plaintext
class com.example.Greeter extends MovieClip
|
|
{
|
|
public function Greeter() {}
|
|
public function onLoad():Void
|
|
{
|
|
var txtHello:TextField = this.createTextField("txtHello", 0, 0, 0, 100, 100);
|
|
txtHello.text = "Hello, world";
|
|
}
|
|
} |