Fullscreen mode

Hello guys,
i have make a full screen mode but when i upload .swf file in faceboo full screen won’t work and when i test my .swf in pc it work perfectly

[[COLOR=#333333]Code[/COLOR]]
public function f_dwn(arg1:flash.events.MouseEvent):*
{
if (stage.displayState != flash.display.StageDisplayState.NORMAL)
{
stage.displayState = flash.display.StageDisplayState.NORMAL;
}
else
{
stage.displayState = flash.display.StageDisplayState.FULL_SCREEN;
}
return;
}// end function
[COLOR=#333333]**

**[/COLOR]