Skip to content

Commit

Permalink
Merge pull request leachim6#98 from goldenratio/patch-1
Browse files Browse the repository at this point in the history
Update a/actionscript3.as
  • Loading branch information
Dineshkarthik committed Jun 20, 2014
2 parents abe3902 + 6217db6 commit 9524707
Showing 1 changed file with 29 additions and 5 deletions.
34 changes: 29 additions & 5 deletions a/actionscript3.as
@@ -1,8 +1,32 @@
package {
import flash.display.Sprite;
public class HelloWorld extends Sprite {
public function HelloWorld():void {
trace("Hello World");

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);


}
}
}
}

0 comments on commit 9524707

Please sign in to comment.