Buongiorno a tutti!

Mi chiamo Massimiliano ed è la prima volta che scrivo nel forum.
Vi contatto perché mi sono bloccato sull'action script di una slideshow
che sto creando.

Per voi sarà una cosa semplicissima aiutarmi e vi ringrazio già
in anticipo per ogni eventuale aiuto!

Ho allegato il file che sto creando con AS 2.0.
Dilungarsi con una descrizione dettagliata del file mi sembra inutile,
perciò se scaricate il file capirete subito qual'è il mio problema.

Grazie e ancora grazie a chi mi "soccorrerà"

Il file in breve:
Ho creato delle piccole "polaroid".
Queste polaroid rappresentano 5 categorie accessibili cliccando sulla foto della polaroid.
Vorrei dividere:
on Press sulla cornice - la polaroid è draggabile nello schermo
on Press sulla foto - si avvia una slideshow legata ad un XML

E' proprio l'on Press sulla foto che non riesco a realizzarlo.

Credo sia una cosa facilissima per voi e indolore.
Come posso fare per passarvi il fla?

Allego il codice:
//IMPORTA EFFETTO DI TRANSIZIONE
import mx.transitions.Tween;

// foto1 ////////////////////////////
foto1_mc.onRollOver = function () {
// gestione della larghezza dell'animazione
var bump1overH:Tween = new Tween(foto1_mc, "_height", mx.transitions.easing.Elastic.easeOut, 238, 248, 3, true);
// gestione dell'altezza dell'animazione
var bump1overW:Tween = new Tween(foto1_mc, "_width", mx.transitions.easing.Elastic.easeOut, 288, 298, 3, true);
// la cornice diventa rossa con rollover
foto1_mc.q_foto1_mc.gotoAndStop("over");

/////////////////////////////////// ECCO COSA NON MI VIENE /////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////

// la zona dedicata alla foto dovrebbe scurirsi (avvia_slide1_mc > status over)
foto1.avvia_slide1_mc.onRollOver = function () {
this.gotoAndStop("over");
}
// la zona dedicata alla foto dovrebbe tornare ad essere grigio chiara (avvia_slide1_mc > status normal)
foto1.avvia_slide1_mc.onRollOut = function () {
this.gotoAndStop("normal");
}
// cliccando sulla zona dedicata alla foto dovrei passare al fotogramma n.2 della timeline "slide"
foto1.avvia_slide1_mc.onPress = function () {
play();
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////

}

foto1_mc.onRollOut = function () {
var bump1outH:Tween = new Tween(foto1_mc, "_height", mx.transitions.easing.Elastic.easeOut, 248, 238, 3, true);
var bump1outW:Tween = new Tween(foto1_mc, "_width", mx.transitions.easing.Elastic.easeOut, 298, 288, 3, true);
foto1_mc.q_foto1_mc.gotoAndStop("normal");
}

foto1_mc.onPress = function () {
this.startDrag(false, 70, 10, 645, 270);
}

foto1_mc.onRelease = foto1_mc.onReleaseOutside = function () {
this.stopDrag();
}

// foto2 ////////////////////////////
foto2_mc.onRollOver = function () {
var bump2overH:Tween = new Tween(foto2_mc, "_height", mx.transitions.easing.Elastic.easeOut, 234, 244, 3, true);
var bump2overW:Tween = new Tween(foto2_mc, "_width", mx.transitions.easing.Elastic.easeOut, 286, 296, 3, true);
foto2_mc.q_foto2_mc.gotoAndStop("over");
}

foto2_mc.onRollOut = function () {
var bump2outH:Tween = new Tween(foto2_mc, "_height", mx.transitions.easing.Elastic.easeOut, 244, 234, 3, true);
var bump2outW:Tween = new Tween(foto2_mc, "_width", mx.transitions.easing.Elastic.easeOut, 296, 286, 3, true);
foto2_mc.q_foto2_mc.gotoAndStop("normal");
}

foto2_mc.onPress = function () {
this.startDrag(false, 40, 40, 630, 330);
}

foto2_mc.onRelease = foto2_mc.onReleaseOutside = function () {
this.stopDrag();
}

// foto3 ////////////////////////////
foto3_mc.onRollOver = function () {
var bump3overH:Tween = new Tween(foto3_mc, "_height", mx.transitions.easing.Elastic.easeOut, 220, 230, 3, true);
var bump3overW:Tween = new Tween(foto3_mc, "_width", mx.transitions.easing.Elastic.easeOut, 276, 286, 3, true);
foto3_mc.q_foto3_mc.gotoAndStop("over");
}

foto3_mc.onRollOut = function () {
var bump3outH:Tween = new Tween(foto3_mc, "_height", mx.transitions.easing.Elastic.easeOut, 230, 220, 3, true);
var bump3outW:Tween = new Tween(foto3_mc, "_width", mx.transitions.easing.Elastic.easeOut, 286, 276, 3, true);
foto3_mc.q_foto3_mc.gotoAndStop("normal");
}

foto3_mc.onPress = function () {
this.startDrag(false, 70, 50, 645, 270);
}

foto3_mc.onRelease = foto3_mc.onReleaseOutside = function () {
this.stopDrag();
}

// foto4 ////////////////////////////
foto4_mc.onRollOver = function () {
var bump4overH:Tween = new Tween(foto4_mc, "_height", mx.transitions.easing.Elastic.easeOut, 260, 270, 3, true);
var bump4overW:Tween = new Tween(foto4_mc, "_width", mx.transitions.easing.Elastic.easeOut, 293, 303, 3, true);
foto4_mc.q_foto4_mc.gotoAndStop("over");
}

foto4_mc.onRollOut = function () {
var bump4outH:Tween = new Tween(foto4_mc, "_height", mx.transitions.easing.Elastic.easeOut, 270, 260, 3, true);
var bump4outW:Tween = new Tween(foto4_mc, "_width", mx.transitions.easing.Elastic.easeOut, 303, 293, 3, true);
foto4_mc.q_foto4_mc.gotoAndStop("normal");
}

foto4_mc.onPress = function () {
this.startDrag(false, 50, 100, 630, 330);
}

foto4_mc.onRelease = foto4_mc.onReleaseOutside = function () {
this.stopDrag();
}

// foto5 ////////////////////////////
foto5_mc.onRollOver = function () {
var bump5overH:Tween = new Tween(foto5_mc, "_height", mx.transitions.easing.Elastic.easeOut, 232, 242, 3, true);
var bumpL5overW:Tween = new Tween(foto5_mc, "_width", mx.transitions.easing.Elastic.easeOut, 284, 294, 3, true);
foto5_mc.q_foto5_mc.gotoAndStop("over");
}

foto5_mc.onRollOut = function () {
var bump5outH:Tween = new Tween(foto5_mc, "_height", mx.transitions.easing.Elastic.easeOut, 242, 232, 3, true);
var bump5outW:Tween = new Tween(foto5_mc, "_width", mx.transitions.easing.Elastic.easeOut, 294, 284, 3, true);
foto5_mc.q_foto5_mc.gotoAndStop("normal");
}

foto5_mc.onPress = function () {
this.startDrag(false, 70, 10, 645, 270);
}

foto5_mc.onRelease = foto5_mc.onReleaseOutside = function () {
this.stopDrag();
}

Buona giornata!

Massi