Results 1 to 3 of 3

Thread: Pixelating Slideshow Script Issues

  1. #1
    Join Date
    Jul 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Pixelating Slideshow Script Issues

    I am using the Pixelating Slideshow Script on a few sites, but now in IE10 the banners will not rotate. In my console i get this error "SCRIPT5007: Unable to get property '0' of undefined or null reference" referencing to line " var pixeldelay=(ie55)? document.images.slide.filters[0].duration*1000 : 0 " of code that goes in the BODY. When i view my site in compatibility view, works just fine. Can anyone help with ideas to have this js code compatible with IE10? Or any other suggestions to get it to work. Thanks so much!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    That script is basically obsolete due IE's abandoning support of the proprietary filters that it uses. This is perhaps the closest replacement:

    http://dev7studios.com/nivo-slider/

    It can be configured to pixelate for all transitions, but it also has many other available transitions which can be used, either alone or alternating among two or more within a single slideshow.

    There's also:

    http://jquery.malsup.com/cycle/

    which has no pixelating option, but that does provide several transition options.

    And for a fade only transition slideshow that's relatively easy to use, there's (both from DD):

    http://www.dynamicdrive.com/dynamici...army/index.htm

    and:

    http://www.dynamicdrive.com/dynamici...nslideshow.htm

    However, if you want to use the Pixelating Slideshow Script and have it act like a simple slideshow (no transitions) when those are not supported, it can be modified. Just change:

    Code:
    var ie55=window.createPopup
    to:

    Code:
    var ie55=/MSIE (\d+)/.exec(navigator.userAgent)
    ie55 = ie55 && ie55[1] < 10
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Jul 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Oh thank you so much! First off, sorry i posted in the wrong place! And thanks for the advice. For now i just patched it up with the code you sent along. Now at least it works. I will have to study up on a replacement script to use. Thanks for the suggestions, i am sure one will work for me. Thanks again! Wendell

Similar Threads

  1. Pixelating Slideshow Script
    By raydona in forum Dynamic Drive scripts help
    Replies: 3
    Last Post: 02-01-2010, 02:47 AM
  2. Pixelating Slideshow Script
    By mels in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 06-03-2008, 04:56 AM
  3. Question on Pixelating Slideshow Script
    By monique in forum Dynamic Drive scripts help
    Replies: 5
    Last Post: 08-24-2006, 07:49 AM
  4. Pixelating Slideshow Script and FF
    By Crea in forum Bug reports
    Replies: 0
    Last Post: 05-20-2005, 04:31 PM
  5. HELP !!!Pixelating Slideshow Script
    By Digitallwz in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 02-13-2005, 10:16 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •