My apologies if this has been answered previously, but I have not found anything in the archives. I am looking to BlindUp an element then BlindDown the element. I was offered the following suggestion: function ChangeImage() { Effect.BlindUp(''MyElement'',{duration:1.5}); Effect.BlindDown(''MyElement'',{duration:1.5, queue: ''end''}); } This works fine in Firefox, but in Internet Explorer the element disappears then reappears. Oddly, if requested again it works properly. Has anyone else seen this behavior before? Is there a workaround to get Internet Explorer to work with this? Cheers - 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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Do you have the same problem with a scoped queue? e.g. function ChangeImage() { Effect.BlindUp(''MyElement'',{duration:1.5, queue: {scope: ''MyElement''}}); Effect.BlindDown(''MyElement'',{duration:1.5, queue: {scope: ''MyElement'', position:''end''}}); } http://wiki.script.aculo.us/scriptaculous/show/EffectQueues If that doesn''t work, perhaps it''s a problem where IE is (re)loading the image on display. It doesn''t always cache CSS background images properly, for example. Possible solutions include: http://www.mister-pixel.com/index.php?Content__state=is_that_simple http://mir.aculo.us/2005/08/28/internet-explorer-and-ajax-image- caching-woes http://fivesevensix.com/studies/ie6flicker/ TAG On Jun 25, 2007, at 7:39 AM, GLSmyth wrote:> > My apologies if this has been answered previously, but I have not > found anything in the archives. > > I am looking to BlindUp an element then BlindDown the element. I was > offered the following suggestion: > > function ChangeImage() { > Effect.BlindUp(''MyElement'',{duration:1.5}); > Effect.BlindDown(''MyElement'',{duration:1.5, queue: ''end''}); > } > > This works fine in Firefox, but in Internet Explorer the element > disappears then reappears. Oddly, if requested again it works > properly. > > Has anyone else seen this behavior before? Is there a workaround to > get Internet Explorer to work with this? > > Cheers - > > 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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks for the link, I didn''t know about this. I gave it a try and the problem still exists. I have a feeling that there is something with the BlindUp/Down routines when used in this fashion in IE, as Fade/Appear work without this problem. Cheers - george On Jun 25, 12:38 pm, Tom Gregory <t...-PGZyUNKar/Q@public.gmane.org> wrote:> Do you have the same problem with a scoped queue? e.g. > function ChangeImage() { > Effect.BlindUp(''MyElement'',{duration:1.5, queue: {scope: > ''MyElement''}}); > Effect.BlindDown(''MyElement'',{duration:1.5, queue: {scope: > ''MyElement'', position:''end''}});} > > http://wiki.script.aculo.us/scriptaculous/show/EffectQueues > > If that doesn''t work, perhaps it''s a problem where IE is (re)loading > the image on display. It doesn''t always cache CSS background images > properly, for example. Possible solutions include:http://www.mister-pixel.com/index.php?Content__state=is_that_simplehttp://mir.aculo.us/2005/08/28/internet-explorer-and-ajax-image- > caching-woeshttp://fivesevensix.com/studies/ie6flicker/ > > TAG > > On Jun 25, 2007, at 7:39 AM, GLSmyth wrote: > > > > > My apologies if this has been answered previously, but I have not > > found anything in the archives. > > > I am looking to BlindUp an element then BlindDown the element. I was > > offered the following suggestion: > > > function ChangeImage() { > > Effect.BlindUp(''MyElement'',{duration:1.5}); > > Effect.BlindDown(''MyElement'',{duration:1.5, queue: ''end''}); > > } > > > This works fine in Firefox, but in Internet Explorer the element > > disappears then reappears. Oddly, if requested again it works > > properly. > > > Has anyone else seen this behavior before? Is there a workaround to > > get Internet Explorer to work with this? > > > Cheers - > > > 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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---
I''m doing some testing of the Scriptaculous beta version (upgrading existing app to new library version), and I''m getting weird behavior at the end of BlindDown too. If I track it down, I''ll let you know. TAG On Jun 25, 2007, at 10:43 AM, GLSmyth wrote:> > Thanks for the link, I didn''t know about this. I gave it a try and > the problem still exists. I have a feeling that there is something > with the BlindUp/Down routines when used in this fashion in IE, as > Fade/Appear work without this problem. > > Cheers - > > george > > > On Jun 25, 12:38 pm, Tom Gregory <t...-PGZyUNKar/Q@public.gmane.org> wrote: >> ... >> >> If that doesn''t work, perhaps it''s a problem where IE is (re)loading >> the image on display. It doesn''t always cache CSS background images >> properly, for example. Possible solutions include:http:// >> www.mister-pixel.com/index.php?Content__state=is_that_simplehttp:// >> mir.aculo.us/2005/08/28/internet-explorer-and-ajax-image- >> caching-woeshttp://fivesevensix.com/studies/ie6flicker/ >> >> TAG--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs?hl=en -~----------~----~----~----~------~----~------~--~---