Is there a simple way to do dynamic photo transitions?
I have followed this tutorial Adding Thumbnails
But I want to know if there is a simple way to do dynamic photo transitions like:
Wipe
Fly in/out
Zoom in/out
squares reveals next image
Strips reveal nexts image
jagged stripes reveals next image
Page turn reveals next image etc.
:confused:
I understand what you are saying but
I understand what you are saying but - I want to use add something like this:
Code:
import mx.transitions.*;
import mx.transitions.easing.*;
var dissolving = {
type: PixelDissolve,
direction: 1,
duration: 3,
xSections: 20,
ySections: 20,
easing: Strong.easeInOut,
numStrips: 10,
dimension: 1
};
TransitionManager.start(???, dissolving);
to this code (Adding Thumbnails)