Skip to content

Instantly share code, notes, and snippets.

@wwwins
Created December 30, 2011 08:43
Show Gist options
  • Save wwwins/1538803 to your computer and use it in GitHub Desktop.
Save wwwins/1538803 to your computer and use it in GitHub Desktop.
/**
* @mxmlc -debug -o=bin/ClassName.swf
* //@mxmlc -o=bin/ClassName.swf -l=GATracking.swc
*/
package
{
import flash.display.Sprite;
public class ClassName extends Sprite
{
public function ClassName()
{
trace("ClassName");
graphics.beginFill(0x1234567, 1);
graphics.drawCircle(100, 100, 100);
graphics.endFill();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment