23/11/2011, 17:33
|
| | Fecha de Ingreso: julio-2006
Mensajes: 32
Antigüedad: 18 años, 4 meses Puntos: 0 | |
duda con fullscreen cs3 hola como siempre recurro a los capos de uds
tengo algunas dudas ya que en cs2 sabia como hacerlo
estoy haciendo un cd interactivo necesito que al momento de que se autoejecute sea fullscreen
y asi mismo tendre botones de minimizar y cerrar respectivamente
estoy usando esto pero no me funciona
import flash.display.Stage;
import flash.display.StageDisplayState;
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 );
import flash.events.FullScreenEvent;
stage.addEventListener(FullScreenEvent.FULL_SCREEN , onFullScreenEvent );
function onFullScreenEvent(e:FullScreenEvent){
cerrar.addEventListener(MouseEvent.CLICK, onFullScreenEvent );
}
Última edición por karencita; 23/11/2011 a las 18:00 |