Results 1 to 2 of 2

Thread: CMotion Image Gallery removing end image message?

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

    Default CMotion Image Gallery removing end image message?

    1) Script Title: CMotion Image Gallery

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

    3) Describe problem: i cant seem to remove the end image message, when i do it stops the scroll working HEEEELP PLEAAASE

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    A cheap hack could be finding this part of the js
    Code:
    function moveleft(){
    if (loadedyes){
    movestate="left";
    if (iedom&&parseInt(cross_scroll.style.left)>(menuwidth-actualwidth)){
    cross_scroll.style.left=parseInt(cross_scroll.style.left)-scrollspeed+"px";
    showhidediv("hidden");
    }
    else
    showhidediv("hidden");
    }
    lefttime=setTimeout("moveleft()",10);
    }
    
    function moveright(){
    if (loadedyes){
    movestate="right";
    if (iedom&&parseInt(cross_scroll.style.left)<0){
    cross_scroll.style.left=parseInt(cross_scroll.style.left)+scrollspeed+"px";
    showhidediv("hidden");
    }
    else
    showhidediv("hidden");
    }
    righttime=setTimeout("moveright()",10);
    }
    And change "visible" to "hidden" as I have done above in the two instances highlighted in red. Probably not the smartest way to do it, but it seems to work.

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

    AndrewManpoo (02-06-2011)

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
  •