una possibile soluzione:
che le foto siano al frame 20, 30, 40 ecc. ...
codice:
// in un frame qualsiasi prima del frame 20
stop();
_root.onEnterFrame = function () {
ifFrameLoaded (20) {
delete this.onEnterFrame;
play ();
}
}
// 20 frame
tempo = getTimer ();
stop();
_root.onEnterFrame = function () {
ifFrameLoaded (30) {
if ((getTimer()-tempo)>4000) {
delete this.onEnterFrame;
play ();
}
}
}
// 30 frame
tempo = getTimer ();
stop();
_root.onEnterFrame = function () {
ifFrameLoaded (40) {
if ((getTimer()-tempo)>4000) {
delete this.onEnterFrame;
play ();
}
}
}
e così via...