Hola!!! Tengo un problema que me está matando literalmente!!
Estoy haciendo un sitio con unas galerias que tienen un slideshow con los tumbnail al costado que suben....etna hechos con precarga, pero son terriblemente lentos....¿puedo hacer algo para mejorarlos????
esto es lo que tengo
http://www.lauramanriquez.com.ar/prueba11/inicio.html
El codigo que tengo es
yphoto = 0;
widthmovie = 533;
scrollspeed = 3;
speed = 5;
widthphoto = 1400;
ymouse = _ymouse - widthmovie / 2;
speed = ymouse / scrollspeed;
if (speed < 0)
{
speed = -speed;
} // end if
if (ymouse < 0)
{
yphoto = yphoto + speed;
} // end if
if (ymouse > 0)
{
yphoto = yphoto - speed;
} // end if
f (yphoto > 0)
{
yphoto = 0;
} // end if
if (yphoto < -(widthphoto - widthmovie))
{
yphoto = -(widthphoto - widthmovie);
} // end if
if (_xmouse > -50 && _xmouse < 100)
{
setProperty("photo", _y, yphoto);
} // end if
y despues las galerias cargan desde el boton en un mc, el codigo del boton es
on (release)
{
loadMovie("gartisticos/1.jpg", "../../fto");
}
Cualquier ayuda sera más que agradecida!!!!!!!!!
Ale