Flash vs Silverlight: Simple Game System JavaFx is released!
Dec 04

It has been more than a month that I didn’t post a new image transition effect. That’s because it’s hard to figure out a nice idea.

Therefore, if you have any good suggestion on Image Transition, please let me know.

The images used in the applications are created by me via the Facebook Application Pencake Ecard.

Comparison

Flash implementation: 30 minutes (Implemented First)
Silverlight implementation: 30 minutes

Source codes

Flash

Silverlight

Shares and Enjoy~

Did you like this post?

Subscribe here:  

22 Responses to “Flash and Silverlight: Image Transition Effect”

  1. Mark Mazurik Says:

    Your Silverlight code:

    private void removeAllChildren()
    {
    while(Children.Count > 0){
    Children.RemoveAt(0);
    }

    while(_gridImages.Count > 0){
    _gridImages.RemoveAt(0);
    }
    }

    should probably be

    private void removeAllChildren()
    {
    Children.Clear();
    _gridImages.Clear();
    }

  2. admin Says:

    thx for pointing out that.

    Actually, someone told me that before, but I am just too lazy to update that part. I think I will enchance all the coding next time when reusing the old code.

  3. Matt Watson Says:

    Your silverlight demos never show up for some reason. I wonder if you have the required version number wrong or something. I have the latest version…

  4. Silverlight Travel Says:

    I have the same problem. Something is wrong.

  5. Eugen Says:

    Just want to confirm, that for some reason the Silverlight demo isn’t shown. And I have the latest version of SL installed.

  6. haagel Says:

    Me too…

  7. admin Says:

    ok. I got it. That’s because I have set the param

    in the embed tag. This will cause some display problems in Firefox and Safari.

  8. Diederik Says:

    Hm.. I don’t think it’s the problem of this website. I’ve got no problem at all in IE or FF.

  9. Diederik Says:

    btw. I’ve got the latest version of silverlight running on xp pro sp3

  10. Dita gets Felt Up… digitally. Says:

    [...] Flash and Silverlight: Image Transition Effect [...]

  11. Steve M Says:

    I’m getting the error message “The name CompositionTarget does not exist in the current context.” What could be causing that?

  12. Ben Says:

    How can i load the images from flashvars? In this example the images are within the fla (”image1″, “image2″, “image3″). How can i refer to the root from “ImageTransitionEffect”??

  13. ebsolut.com Says:

    looks cool…. nice job, I find that the silverlight application has a slightly better quality…

  14. lisa mercedes Says:

    I was wondering if i could create several buttons and and have a specific image to transition to instead of having the next image in the array fade in….i want to fade in a a certain image with abutton? is that possible guys?

    x lisa x

  15. NewsPeeps Says:

    Flash and Silverlight: Image Transition Effect…

    Thank you for submitting this cool story - Trackback from NewsPeeps…

  16. Grid Transition Image Rotator | Silverlike - A Free Microsoft Silverlight 3 Directory Says:

    [...] A very nice grid transition image rotator published by Terence Tsang. [...]

  17. kobsoft Says:

    I download your flash workshop and open it … why I can’t to see anything?

  18. spyteen Says:

    Thank you for effect Silverlight

  19. รับทำเว็บไซต์ Says:

    Good, I will use in my website.

  20. หวยดัง Says:

    thx.

  21. dramaqueen Says:

    Hi,

    I downloaded your file for use but I was not able to customize the image size. I changed the image size in GridImageAnimator.as file accordingly but that doesn’t work. I tried changing the the NUM_COLUMN & NUM_ROW variables & it does not work too..I couldn’t figure out what I need to do with it, so I need your help…

    Just some info on my image:
    IMAGE_WIDTH = 935;
    IMAGE_HEIGHT = 265;
    NUM_COLUMN = 18;
    NUM_ROW = 5;

    Thank you!

  22. dramaqueen Says:

    hi, this is what happen to my image after changing the value of the variables. http://img.photobucket.com/albums/v486/dramaQueenz/Untitled-2.jpg
    NUM_COLUMN & NUM_ROW stays at 10..

Leave a Reply