Ver Mensaje Individual
  #15 (permalink)  
Antiguo 12/05/2011, 11:57
aftermad
 
Fecha de Ingreso: diciembre-2008
Mensajes: 85
Antigüedad: 15 años, 4 meses
Puntos: 0
Respuesta: Pase de diapositivas con onPress = function() {

Ey amigos, ambos me van genial, pero ahora me tropiezo con otra cosa.

El MC tiene caracteristicas para que salga a pantalla completa, eso que ahora llaman diagramacion líquida. He intentado incluir el loader en ese codigo pero no va bien. Sabeis cómo puedo solucionar para que el preloader no interfiera en esto y salga lo demás bien? este es el cógido que tengo en el frame 1 del escenario raíz:

Código:
// ***Stage aligned top left
Stage.align = "TL";
// *** Stop the stage from scaling with the browser window.
Stage.scaleMode = "noScale";
stop ();
// initiate postitions and scaling values for objects
fondo._width = Stage.width;
fondo._height = Stage.height;


//create a listner that checks to see if the browser window is resized
sizeListener = new Object();
sizeListener.onResize = function() {
	// change movieclip properties when the window is resized.
	fondo._width = Stage.width;
	fondo._height = Stage.height;

};
Stage.addListener(sizeListener);