Hola karencita:
Tu código tiene errores.
El código debes de escribirlo así:
Código actionscript:
Ver originalimport flash.display.Stage;
import flash.display.StageDisplayState;
import flash.events.FullScreenEvent;
fscommand("fullscreen", "true");
function cambiarModoPantalla(e:MouseEvent) {
if (stage.displayState==StageDisplayState.NORMAL) {
stage.displayState=StageDisplayState.FULL_SCREEN;
} else {
stage.displayState=StageDisplayState.NORMAL;
}
}
boton_full.addEventListener(MouseEvent.CLICK, cambiarModoPantalla );
Espero haberte sido de ayuda.