A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: Is there a simple way to do dynamic photo transitions?

  1. #1
    Senior Member
    Join Date
    Aug 2007
    Posts
    100

    Talking 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.


  2. #2
    Junior Member
    Join Date
    Jan 2008
    Location
    the diein' UK
    Posts
    11
    here is a very quick example see if you can work it out from this
    Attached Files Attached Files

  3. #3
    Senior Member
    Join Date
    Aug 2007
    Posts
    100

    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)

  4. #4
    Junior Member
    Join Date
    Jan 2008
    Location
    the diein' UK
    Posts
    11
    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.

  5. #5
    Banned deepakflash's Avatar
    Join Date
    Aug 2007
    Location
    [Object not found]
    Posts
    1,160
    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
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center