Foros del Web » Creando para Internet » Flash y Actionscript »

Tengo el siguiente problema

Estas en el tema de Tengo el siguiente problema en el foro de Flash y Actionscript en Foros del Web. En mi web me ocurre esto Cuando entro a www.poetasdenadie.com.ar/index2.html a la sección banda y hago clic en algun integrante y luego voy a la ...
  #1 (permalink)  
Antiguo 30/11/2008, 08:32
 
Fecha de Ingreso: julio-2005
Mensajes: 204
Antigüedad: 18 años, 8 meses
Puntos: 1
Tengo el siguiente problema

En mi web me ocurre esto
Cuando entro a www.poetasdenadie.com.ar/index2.html a la sección banda y hago clic en algun integrante y luego voy a la sección Home, o Banda. la imagen sigue en la página.No se cierra.
En mi index en una capa llamada load tengo el siguiente código que realiza las precargas a las demas secciones:
Este es el código AS que uso.

var bt;
var bt;
var porcentaje;
_root.cargarpelicula.loadMovie("home.swf");
_root.onEnterFrame = function() {
_root.preloader._visible = true;
bt = _root.cargarpelicula.getBytesTotal();
bl = _root.cargarpelicula.getBytesLoaded();
porcentaje = Math.floor(_root.bl/_root.bt*100);
if (_root.porcentaje != 100) {
_root.preloader.prelo_txt.text = _root.porcentaje+"%";
_root.preloader.movimiento._xscale = _root.porcentaje;
} else {
_root.preloader._visible = false;
}
};
_root.home_btn.onRollOver = function() {
_root.home_btn.home_mc.gotoAndStop(2)
}
_root.home_btn.onRollOut = function() {
_root.home_btn.home_mc.gotoAndStop(1)
}
_root.home_btn.onRelease = function() {
_root.cargarpelicula.loadMovie("home.swf");
unloadMovieNum(2);
_root.preloader._visible = true;
bt = _root.cargarpelicula.getBytesTotal();
bl = _root.cargarpelicula.getBytesLoaded();
porcentaje = Math.floor(_root.bl/_root.bt*100);
if (_root.porcentaje != 100) {
_root.preloader.prelo_txt.text = _root.porcentaje+"%";
_root.preloader.movimiento._xscale = _root.porcentaje;
} else {
_root.preloader._visible = false;
}
};
//------------------------------------------
_root.labanda_btn.onRollOver = function() {
_root.labanda_btn.labanda_mc.gotoAndStop(2)
}
_root.labanda_btn.onRollOut = function() {
_root.labanda_btn.labanda_mc.gotoAndStop(1)
}
_root.labanda_btn.onRelease = function() {
_root.cargarpelicula.loadMovie("banda.swf");
unloadMovieNum(2);
_root.preloader._visible = true;
bt = _root.cargarpelicula.getBytesTotal();
bl = _root.cargarpelicula.getBytesLoaded();
porcentaje = Math.floor(_root.bl/_root.bt*100);
if (_root.porcentaje != 100) {
_root.preloader.prelo_txt.text = _root.porcentaje+"%";
_root.preloader.movimiento._xscale = _root.porcentaje;
} else {
_root.preloader._visible = false;
}
};
//------------------------------------------
_root.historia_btn.onRollOver = function() {
_root.historia_btn.labanda_mc.gotoAndStop(2)
}
_root.historia_btn.onRollOut = function() {
_root.historia_btn.historia_mc.gotoAndStop(1)
}
_root.historia_btn.onRelease = function() {
_root.cargarpelicula.loadMovie("historia.swf");
unloadMovieNum(2);
_root.preloader._visible = true;
bt = _root.cargarpelicula.getBytesTotal();
bl = _root.cargarpelicula.getBytesLoaded();
porcentaje = Math.floor(_root.bl/_root.bt*100);
if (_root.porcentaje != 100) {
_root.preloader.prelo_txt.text = _root.porcentaje+"%";
_root.preloader.movimiento._xscale = _root.porcentaje;
} else {
_root.preloader._visible = false;
}
};
_root.descargas_btn.onRollOver = function() {
_root.descargas_btn.descargas_mc.gotoAndStop(2)
}
_root.descargas_btn.onRollOut = function() {
_root.descargas_btn.descargas_mc.gotoAndStop(1)
}
_root.descargas_btn.onRelease = function() {
_root.cargarpelicula.loadMovie("descargas.swf");
unloadMovieNum(2);
_root.preloader._visible = true;
bt = _root.cargarpelicula.getBytesTotal();
bl = _root.cargarpelicula.getBytesLoaded();
porcentaje = Math.floor(_root.bl/_root.bt*100);
if (_root.porcentaje != 100) {
_root.preloader.prelo_txt.text = _root.porcentaje+"%";
_root.preloader.movimiento._xscale = _root.porcentaje;
} else {
_root.preloader._visible = false;
}
};

//----------------------------------------------------------------
_root.discografia_btn.onRollOver = function() {
_root.discografia_btn.discografia_mc.gotoAndStop(2 )
}
_root.discografia_btn.onRollOut = function() {
_root.discografia_btn.discografia_mc.gotoAndStop(1 )
}
_root.discografia_btn.onRelease = function() {
_root.cargarpelicula.loadMovie("discografia.swf");
unloadMovieNum(2);
_root.preloader._visible = true;
bt = _root.cargarpelicula.getBytesTotal();
bl = _root.cargarpelicula.getBytesLoaded();
porcentaje = Math.floor(_root.bl/_root.bt*100);
if (_root.porcentaje != 100) {
_root.preloader.prelo_txt.text = _root.porcentaje+"%";
_root.preloader.movimiento._xscale = _root.porcentaje;
} else {
_root.preloader._visible = false;
}
};

//------------------------------------------
_root.fotos_btn.onRollOver = function() {
_root.fotos_btn.fotos_mc.gotoAndStop(2)
}
_root.fotos_btn.onRollOut = function() {
_root.fotos_btn.fotos_mc.gotoAndStop(1)
}
_root.fotos_btn.onRelease = function() {
_root.cargarpelicula.loadMovie("fotos.swf");
unloadMovieNum(2);
_root.preloader._visible = true;
bt = _root.cargarpelicula.getBytesTotal();
bl = _root.cargarpelicula.getBytesLoaded();
porcentaje = Math.floor(_root.bl/_root.bt*100);
if (_root.porcentaje != 100) {
_root.preloader.prelo_txt.text = _root.porcentaje+"%";
_root.preloader.movimiento._xscale = _root.porcentaje;
} else {
_root.preloader._visible = false;
}
};


Espero que me puedanayudar.
Saludos!
  #2 (permalink)  
Antiguo 30/11/2008, 14:26
 
Fecha de Ingreso: julio-2005
Mensajes: 204
Antigüedad: 18 años, 8 meses
Puntos: 1
Respuesta: Tengo el siguiente problema

He notado lo siguiente:
-En mi computadora lo veo en perfectas condiciones.
-de 6 personas a las que les consulte 3 las ven en perfectas condiciones y otras 3 incluyendome tienen el mismo problema que yo al verlas.

Saludos!
  #3 (permalink)  
Antiguo 01/12/2008, 10:07
 
Fecha de Ingreso: julio-2005
Mensajes: 204
Antigüedad: 18 años, 8 meses
Puntos: 1
Respuesta: Tengo el siguiente problema

No se porque razón,pero ahora no se me ocurre ese problema.jajaj
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 04:48.