Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Conveyor Belt slideshow script

  1. #1
    Join Date
    Aug 2006
    Location
    Sweden
    Posts
    19
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default Conveyor Belt slideshow script

    Hi
    Is it possible to get the Conveyor Belt slideshow script to slide from left to right instead of right to left?

    Best Regards
    Nicklas

  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

    Yes.

    Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.


    http://home.comcast.net/~jscheuer1/s...t_or_right.htm

    View the source of the above demo, it is configurable for left or right only. The control visible on the demo is also a configuration option.
    - John
    ________________________

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

  3. #3
    Join Date
    Aug 2006
    Location
    Sweden
    Posts
    19
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default

    Thanks for respons jscheuer1
    The source and demo was perfect!
    / Niclas

  4. #4
    Join Date
    Aug 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question

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

    the above code works fine but kills any other javascript on my page - ie a drop down menu.

    is there something i should be looking out for in the code that is interfering with my drop down?

    thank you

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

    Yes, an onload conflict.

    Note: please read this tutorial before posting questions regarding multiple script usage.
    The disclaimer in this thread only means that you might not get additional help here.
    - John
    ________________________

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

  6. #6
    Join Date
    Aug 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks john.
    im a bit new to javascript through - what do i do? and how do i find it? dont worry if its too complicated i dont want to waste your time. but if its something quick and easy i would love to know
    thanks again

  7. #7
    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 look for onload. You will usually see either:

    HTML Code:
    <body onload="something();">
    or similar or:

    Code:
    window.onload=somethingelse;
    or similar. Sometimes it is document.onload= or just onload=

    What usually works is to get rid of all the onload='s lines from the scripts and combine all their events in the body tag. So if you have the two above, get rid of the second one and make the body tag like so:

    HTML Code:
    <body onload="something();somethingelse();">
    This is all laid out in the tutorial. If you just can't get it, I would need to see the problem page or at least the full code for both scripts. Also, this is only the most common cause of conflict, there can be others but, until this one is either resolved or determined not to be a factor, the other problems, which are rarer, usually cannot be found, if they even exist.
    - John
    ________________________

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

  8. #8
    Join Date
    Aug 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi John,
    Yeah ive read the tutorial but its just too complicated for me as ive never done this before. Also, the drop down menu is sourcing the javascript from another folder on the site so i dont know what to change, the script on the page or the js file for the drop down.

    anyway here are the links

    Broken menu but working scroll
    http://www.testing.pinnaclenorth.com.au/home_NEW_06.htm


    Working menu no scroll
    http://www.testing.pinnaclenorth.com.au/home_NEW.htm

  9. #9
    Join Date
    Aug 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

  10. #10
    Join Date
    Aug 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    firstly can i just say THANK YOU so much for your amazing help - i really appreciate this.
    BUT...didnt work

    http://www.testing.pinnaclenorth.com.au/home_NEW07.htm


    dont worry i dont expect you to spend any more time on this - unless its paid work!? dd@squiggledesigns.com.au if you can get it working im happy to do so.

    thanks!

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
  •