Update a/actionscript3.as
This commit is contained in:
@@ -1,8 +1,32 @@
|
|||||||
package {
|
package {
|
||||||
import flash.display.Sprite;
|
|
||||||
public class HelloWorld extends Sprite {
|
import flash.display.Sprite;
|
||||||
public function HelloWorld():void {
|
import flash.text.TextField;
|
||||||
trace("Hello World");
|
import flash.text.TextFieldAutoSize;
|
||||||
|
import flash.text.TextFormat;
|
||||||
|
|
||||||
|
[SWF(width='800', height='600', backgroundColor='#cccccc', frameRate='30')]
|
||||||
|
|
||||||
|
public class HelloFlash extends Sprite
|
||||||
|
{
|
||||||
|
public function HelloFlash()
|
||||||
|
{
|
||||||
|
var format:TextFormat = new TextFormat();
|
||||||
|
format.font = "Arial";
|
||||||
|
format.size = 20;
|
||||||
|
format.color = 0x0000;
|
||||||
|
|
||||||
|
var textField:TextField = new TextField();
|
||||||
|
textField.defaultTextFormat = format;
|
||||||
|
|
||||||
|
textField.border = false;
|
||||||
|
textField.autoSize = TextFieldAutoSize.LEFT;
|
||||||
|
textField.selectable = false;
|
||||||
|
|
||||||
|
textField.text = "Hello World";
|
||||||
|
addChild(textField);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user