Meta tweaks

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall
2021-02-17 17:39:48 +13:00
parent 14f6505d0c
commit dad1ce8fa0
98 changed files with 695 additions and 699 deletions

32
a/ActionScript 3.as Normal file
View File

@@ -0,0 +1,32 @@
package {
import flash.display.Sprite;
import flash.text.TextField;
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);
}
}
}