Results 1 to 3 of 3

Thread: Ultimate Fade-in slideshow (v2.4) not working on IE8

  1. #1
    Join Date
    Aug 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Ultimate Fade-in slideshow (v2.4) not working on IE8

    1) Script Title: Ultimate Fade-in slideshow (v2.4)

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...nslideshow.htm

    3) Describe problem: Everything is working fine in all browsers except Internet Explorer 8.

    Here is my url : http://www.sceranka.wz.cz

  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

    From the IE error console:

    SCRIPT1023: Expected hexadecimal digit
    fadeslideshow.js, line 11 character 72
    It's talking about this line:

    Code:
    	controls: [['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\x.png',7,7], ['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\restore.png',10,11], ['C:\Users\Matus\Documents\Praca\webstranka\osobny_web\js\loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
    See those paths? They're local paths. The \ slashes are seen as escapes. \x means a hex code should follow.

    Anyways, upload those images to the server if you haven't already. Put them in the same folder as your page and restore the default line to the script:

    Code:
    	controls: [['x.png',7,7], ['restore.png',10,11], ['loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
    Last edited by jscheuer1; 08-15-2011 at 07:35 PM. Reason: English Usage
    - John
    ________________________

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

  3. #3
    Join Date
    Aug 2011
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Resolved

    Thank you very much! It is working now.

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
  •