Falcon: Difference between revisions

From Noisebridge
Jump to navigation Jump to search
Thex (talk | contribs)
No edit summary
Thex (talk | contribs)
 
Line 1: Line 1:
== Projects ==
== Projects ==


[[pp]]
[[Pp]]


== Requirements ==
== Requirements ==

Latest revision as of 13:29, 29 March 2013

Projects

[edit | edit source]

Pp

Requirements

[edit | edit source]

Notes

  • Insure Java /bin folder is in system environment path
  • Manually set {playerglobalHome} to swc directory

HelloWorld

[edit | edit source]

This is how to build a HelloWorld.

package
{

	import flash.display.Sprite;
	import flash.text.TextField;

	public class HelloWorld extends Sprite
	{

		public function HelloWorld()
		{
			var txt:TextField = new TextField();
			txt.text = "HelloWorld";
			addChild(txt);
		}

	}
}