Ciao a tutti ho una photo gallery formata da 10 miniature e cliccando in ogni miniatura si apre sopra la foto in dimensioni + grandi, vorrei inserire + di 10 foto ma anche se aggiungo le miniature non va avanti, vorrei il vostro aiuto sulle action che ho sul come modificarle
in questo mc ci sono tre azioni...
la prima
center = 550;
moviePos = timemovie._x;
Leftstop = 580;
Rightstop = 230;
la seconda
if ((_root._xmouse>355) and (_root._xmouse < 740) and (_root._ymouse>550) and (_root._ymouse<620)) {
ScrollSpeed = (_root._xmouse-center)/20;
moviePos = Math.round (moviePos-ScrollSpeed);
}
if (((_root._xmouse<10) or (_root._xmouse>380)) and ((_root._ymouse<10) or (_root._ymouse>250))) {
ScrollSpeed = 0;
moviePos = moviePos;
}
if (moviePos > Leftstop) {
moviePos = Leftstop;
}
if (moviePos < Rightstop) {
moviePos = Rightstop;
}
timemovie._x = moviePos;
e nella terza
gotoAndPlay(2);
mi dite perfavore che valore devo aumentare per far scorrere + immagini nelle miniature?
grazie anticipatamente

Rispondi quotando