Спасибо, а как к нему обратиться? Вот так не работает:

Код AS3:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
private function onCreationComplete():void
{
var sprite:Sprite = new Sprite();
var g:Graphics = sprite.graphics;
g.lineStyle(1, 0xFF0000);
g.beginFill(0xFF0000);
g.drawCircle(200, 200, 20);
g.endFill();
this.addChild(sprite);
}
]]>
</mx:Script>
<mx:TabNavigator id="tabs" width="100%" height="100%">
<mx:Canvas label="Пуля" width="100%" height="100%">
</mx:Canvas>
<mx:Canvas label="Игры" id="table" width="100%" height="100%">
<mx:UIComponent id="spriteHolder" width="100%" height="100% creationComplete="onCreationComplete();"/>
</mx:Canvas>
</mx:TabNavigator>
</mx:Application>