Hi,
I have been playing around with the transition manager (Flash 8) but have found that not all transitions work.
I have one timeline (60 frames) with a movieclip (imageHolder)that randomly displays an image.
At the end of the 60 frames, I loop back to frame 1 to display another random image.
What I am trying to do is have different transition effects.
I have found that the following work:
These have no effect or result in a blank screen:
I have also tried these in a new flash with a static movie clip and they still don't work.
Am I doing something wrong?
Thanks,
Adam
------------------------------------
There's no place like 127.0.0.1
------------------------------------
I have been playing around with the transition manager (Flash 8) but have found that not all transitions work.
I have one timeline (60 frames) with a movieclip (imageHolder)that randomly displays an image.
At the end of the 60 frames, I loop back to frame 1 to display another random image.
What I am trying to do is have different transition effects.
Code:
import mx.transitions.*;
import mx.transitions.easing.*;
I have found that the following work:
Code:
TransitionManager.start(imageHolder,{type:Fade,direction:Transition.IN, duration:1.5,easing:None.easeNone});
TransitionManager.start(imageHolder,{type:Fly,direction:Transition.IN, duration:1.5, easing:Elastic.easeOut, startPoint:9});
TransitionManager.start(imageHolder, {type:Zoom,direction:Transition.IN, duration:2,easing:Elastic.easeOut});
TransitionManager.start(imageHolder, {type:Rotate,direction:Transition.IN, duration:3,easing:Strong.easeInOut,ccw:false, degrees:180});
TransitionManager.start(imageHolder, {type:Photo,direction:Transition.IN, duration:1,easing:None.easeNone});
These have no effect or result in a blank screen:
Code:
TransitionManager.start(imageHolder, {type:Iris, direction:Transition.IN, duration:2,easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
TransitionManager.start(imageHolder, {type:PixelDissolve,direction:Transition.IN, duration:2,easing:None.easeNone,xSections:10,ySections:10});
TransitionManager.start(imageHolder, {type:Squeeze,direction:Transition.IN, duration:2,easing:Elastic.easeOut,dimension:1});
TransitionManager.start(imageHolder, {type:Wipe, direction:Transition.IN, duration:2,easing:None.easeNone, startPoint:1});
TransitionManager.start(imageHolder, {type:Blinds,direction:Transition.IN, duration:1.5,easing:None.easeNone,numStrips:10,dimension:0});
I have also tried these in a new flash with a static movie clip and they still don't work.
Am I doing something wrong?
Thanks,
Adam
------------------------------------
There's no place like 127.0.0.1
------------------------------------