ciertamente, tienes razón, perdón por el despiste,

el caso es una galería de fotos que está en una página web, finalmente mi socia lo ha conseguido, dejo el código por si le pudiese servir a alguien
import flash.display.Stage;
import flash.display.StageDisplayState;
fullScreenButton.onPress=function()
{
if (Stage.displayState=="fullScreen")
Stage.displayState="normal";
else
Stage.displayState="fullScreen";
}
Stage.addListener(this);
this.onFullScreen=function(bFullScreen:Boolean)
{
// do something
this.textBox=bFullScreen;
}

gracias!