Hola sfumatto:
Coloca 2 botones en el escenario con los nombres de instancia:
btn_fullscreen y
btn_reducir
Utiliza éste código:
Código actionscript:
Ver originalthis.btn_fullscreen.onRelease = function() {
fscommand("fullscreen", true);
};
Espero haberte sido de ayuda.
this.btn_reducir.onRelease = function() {
fscommand("fullscreen", false);
};