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.
here is a very quick example see if you can work it out from this
Attached Files
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 )
ok thats a littile more complicated.
you would need to have 2 image holders on top of each other
then dissolve the old image with the new image under it
to do the dissolving you would need to replace the fade script with the dissolve script you have there.
Banned
Try to use tweenClass in the same script you have now. This will give you a lot of flexibility in easing your image transitions HOWEVER YOU LIKE
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules
Click Here to Expand Forum to Full Width