Falcon

From Noisebridge
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Projects

Pp

Requirements

Notes

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

HelloWorld

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

	}
}