Results 1 to 5 of 5

Thread: Document Effect not displaying image

  1. #1
    Join Date
    Apr 2005
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Document Effect not displaying image

    Hi there!
    Using Tripod's site builder and inputed the falling leaves HTML. The effect is there and working with the exception of the leaf images. The leaf images are in my web directory already. How can I get the images to link to the HTML?

  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

    PLEASE: Include the URL to your problematic webpage that you want help with.
    - John
    ________________________

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

  3. #3
    Join Date
    Apr 2005
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry! I just published so you can view it. http://dakokichidekalb.tripod.com

  4. #4
    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

    You need to provide the path to the images in the script, where you have:
    Code:
                      grphcs=new Array(6)
                      Image0=new Image();
                      Image0.src=grphcs[0]="al.gif";
                      Image1=new Image();
                      Image1.src=grphcs[1]="bl.gif"
                      Image2=new Image();
                      Image2.src=grphcs[2]="cl.gif"
                      Image3=new Image();
                      Image3.src=grphcs[3]="dl.gif"
                      Image4=new Image();
                      Image4.src=grphcs[4]="el.gif"
                      Image5=new Image();
                      Image5.src=grphcs[5]="fl.gif"
    it should be:
    Code:
                      grphcs=new Array(6)
                      Image0=new Image();
                      Image0.src=grphcs[0]="sitebuildercontent/sitebuilderpictures/al.gif";
                      Image1=new Image();
                      Image1.src=grphcs[1]="sitebuildercontent/sitebuilderpictures/bl.gif"
                      Image2=new Image();
                      Image2.src=grphcs[2]="sitebuildercontent/sitebuilderpictures/cl.gif"
                      Image3=new Image();
                      Image3.src=grphcs[3]="sitebuildercontent/sitebuilderpictures/dl.gif"
                      Image4=new Image();
                      Image4.src=grphcs[4]="sitebuildercontent/sitebuilderpictures/el.gif"
                      Image5=new Image();
                      Image5.src=grphcs[5]="sitebuildercontent/sitebuilderpictures/fl.gif"
    - John
    ________________________

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

  5. #5
    Join Date
    Apr 2005
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Oh Thank you! I've so much to learn and I really appreciate your help.

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
  •