;

PDA

Click to See Complete Forum and Search --> : Is there a simple way to do dynamic photo transitions?


chrissy19
01-10-2008, 04:50 AM
I have followed this tutorial Adding Thumbnails (http://www.kirupa.com/developer/mx2004/thumbnails.htm)

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:

Veni Vidi Vici
01-10-2008, 08:06 AM
here is a very quick example see if you can work it out from this

chrissy19
01-10-2008, 09:13 AM
I understand what you are saying but - I want to use add something like this:

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 (http://www.kirupa.com/developer/mx2004/thumbnails.htm))

Veni Vidi Vici
01-10-2008, 09:56 AM
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.

deepakflash
01-11-2008, 08:12 AM
Try to use tweenClass (http://www.kirupa.com/developer/actionscript/tween.htm)in the same script you have now. This will give you a lot of flexibility in easing your image transitions HOWEVER YOU LIKE