Results 1 to 3 of 3

Thread: Urgently needed help on cmotion gallery

  1. #1
    Join Date
    Dec 2008
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Urgently needed help on cmotion gallery

    1) Script Title: CMotion Image Gallery

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

    3) Describe problem: image train doesn't move

    1st. What I'm I doing wrong?
    2nd. ofcourse I would like the left and right arrows te be enabled... like mentioned in this thread; http://www.dynamicdrive.com/forums/s...ead.php?t=8922

    who can help me out?
    Last edited by Hasum; 12-09-2008 at 08:07 PM.

  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

    You've an onload conflict, replace:

    Code:
    window.onload=fillup;
    with:

    Code:
    if (window.addEventListener)
     window.addEventListener('load', fillup, false);
    else if (window.attachEvent)
     window.attachEvent('onload', fillup);
    For your arrow images, you can do something like so:

    Code:
    <img onmouseover="scrollspeed=2;moveright();" onmouseout="scrollspeed=0;" src="img/pijltje_links.gif" alt="links">
    and:

    Code:
    <img onmouseover="scrollspeed=2;moveleft();" onmouseout="scrollspeed=0;" src="img/pijltje_rechts.gif" alt="rechts" width="42" height="186">
    - John
    ________________________

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

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    Hasum (12-09-2008)

  4. #3
    Join Date
    Dec 2008
    Posts
    2
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Dear, dear John,

    I... I.. I'm speechless, I'm so glad you helped me out on such short notice!
    It means a lot to me! Thank you very very much! Very very happy.

    Hasum

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
  •