Results 1 to 3 of 3

Thread: Conflict between Cross Browser marquee & Translucent scroller

  1. #1
    Join Date
    Aug 2006
    Location
    Kraków, Poland
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Unhappy Conflict between Cross Browser marquee & Translucent scroller

    1) Script Title: Cross Browser marquee & Translucent scroller

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex2/cmarquee.htm & http://www.dynamicdrive.com/dynamici...centscroll.htm

    3) Describe problem: Separately both scripts work right, but when I use them in the same file Cross Browser marquee crashes. I am totally confused with this situation and I hope that someone could resolve the problem.

    If there was similar thread I apologize and ask for direct me to it.

    Thank for your attention. I look forward the answer.

    desperate man1aq

    P.S. I attached the site with these crashed scripts.

  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

    Remove the line:

    Code:
    window.onload=populate
    from Cross Browser marquee and replace the lines:

    Code:
    if (ie4||dom||document.layers)
    window.onload=startit
    from Translucent scroller with these:

    Code:
    window.onload=function(){
    if (ie4||dom||document.layers)
    startit();
    populate();
    }
    - John
    ________________________

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

  3. #3
    Join Date
    Aug 2006
    Location
    Kraków, Poland
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    I used modifications advisabled by you and scripts are working just like they should in the beginning.

    Thank you for giving attention with my problem.

    happy man1aq

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
  •