man you're lucky, i did something like that just a few days ago, just had to modify a few lines of the script:
at the first frame of the main-timeline put a stop.
then make 2 keyframes for each picture
e.g. 1st frame pictue 1 in a keyframe
2nd frame picture 1 in a keyframe
3rd frame picture 2 in a keyframe,...
what is absolutely important is that you convert all pictures into movieclips.
then put the following script on every first picture of the corresponding 2
(i.e. instance of the movieclip in frame 1, frame 3, frame 5,...):
onClipEvent (load) {
this._alpha = 0;
}
onClipEvent (enterFrame) {
this._alpha += 10;
}
on (keyPress "<Space>"

{
_root.nextFrame();
}
on every second frame (i.e. frame 2, frame 4,...)
put the following script on the instance of the movieclip:
onClipEvent (enterFrame) {
this._xscale += 30;
if (this._xscale>300) {
this._yscale = this._yscale/2;
}
if (this._yscale<10) {
this._yscale = this._yscale;
this._xscale -= 60;
}
if (this._xscale<=10) {
_root.nextFrame();
}
}
and then repeat that through your presentation.
i did the effect with a framerate of 20 per second,... worked quite smoothly
get my examples on
and
regards
Firegambler