I am writing an application that will display a series of images.
When a link is clicked the images will fade away, and new images will
fade in.

I am starting by trying to simply fade the images out then back in
through a function:
function ChangeImage() {
  Effect.BlindDown('MyElement',{duration:0.5});
  Effect.BlindUp('MyElement',{duration:0.5});
}

This results in the images simply being removed from the screen.

I am guessing that this is not working because both Effects are trying
to be executed at about the same time.  Is there any way to do this?
I was going to use Effect.Move to do the same thing and got it working
nicely in Firefox, but unfortunately that doesn't work in IE.

Thanks -

george


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to