GoToFullScreen Automaticly

Hi

I have a code that makes the flash site go to fullscreen. I am trying to do is go to fullscreen without press a button. I have a timer to do that but I am having an error. How can I do this?

full.buttonMode = true; //optional - makes hand-cursor appear when you roll over movie clip
full.addEventListener(MouseEvent.CLICK, toggleFullscreen);

function toggleFullscreen(event:MouseEvent):void
{
trace(“click”);
goFull();

}

function goFull():void{
if (stage.displayState == StageDisplayState.NORMAL)
{
stage.displayState = StageDisplayState.FULL_SCREEN;
//event.target is the display object being animated, it is the target of the event - in this case is it toggle_btn
}
else
{
stage.displayState = StageDisplayState.NORMAL;
}
}

var jumpTimer:Timer = new Timer(500, 1);

jumpTimer.addEventListener(TimerEvent.TIMER, jump);

function jump(event:TimerEvent):void
{
goFull();
trace(“past”);
}

jumpTimer.start();

Thanks