Hola amigos alguien sabe como colocar una pelicula al 100% del ancho y alto de la pantalla, sobre todo en el bendito firefox...
en IE me sale bien, colocandole el 100% a ambos y para que no se deforme le coloco este codigo:
bg._height = Stage.height;
fondo._height = Stage.height;
logo._y = Stage.height-175;
// --
Stage.scaleMode = "noScale";
// --
function stageResize() {
fondo._height = Stage.height+1000;
bg._height = Stage.height;
logo._y = Stage.height-175;
}
// --
miListener = new Object();
miListener.onResize = function() {
stageResize();
};
// --
Stage.addListener(miListener);
pero en firefox me sale una linea de 100% ancho con 200 - 300 px de alto centrada al medio..
ya le quiete el <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
y todas esas cosas y nada, alguien sabe por que??????????
Saludos
Hipopo