package
{
	import flash.text.*;

	[SWF(frameRate = '20', backgroundColor = '0x000000', width = '433', height = '400')]
	public class tadsBJ extends PreLoaderBar
	{

		public function tadsBJ() {

			var t:TextField = new TextField();
			t.textColor = 0xFFFFFF;
			t.selectable = false;
			//t.width = 200;
			t.autoSize = TextFieldAutoSize.LEFT;
			t.text = "Tads Black Jack";
			t.x = (433 / 2) - (t.width/2);
			t.y = (400 / 2) - 100;
			addChild(t);
			super(0x00FF00, 433, 400, "tadsBlackJack");

		}

	}



}