Results 1 to 10 of 10

Thread: Help! Lightbox image viewer is interrupted by Flash

  1. #1
    Join Date
    May 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Unhappy Help! Lightbox image viewer is interrupted by Flash

    Hi, I've just put "Lightbox image viewer" into the web site that I'm working on. The page where "Lightbox image viewer" embedded in has a Flash movie clip. Then, that flash animation prevents "Lightbox image viewer" from displaying correctly. In other words, flash overwraps "Lightbox image viewer".
    Here's my site that I'm talking about.
    http://kayokoscreations.com/service.htm

    Thumbnails at the middle of the page is supposed to work with "Lightbox image viewer".
    Is there anyone knows how to fix it? I wonder if my CSS (for the layout) causes this problem...

    Thanks.

  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

    If this won't take care of it, then there may be no solution other than to put the flash element on another page -

    Follow the detailed information at:

    http://www.macromedia.com/cfusion/kn...fm?id=tn_14201

    Or, if this short version (good in most cases) fixes it, so much the better! Add in this language to your object/embed tag:

    Add the following parameter to the OBJECT tag:

    <param name="wmode" value="transparent">

    Add the following attribute to the EMBED tag:

    wmode="transparent"
    - John
    ________________________

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

  3. #3
    Join Date
    May 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up Thank you!!!

    Thank you, John!!
    It worked perfectly!
    I really really apreciate you!

  4. #4
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    For some reason, this script isn't loading on this computer (school), but isn't this the one that actually has problems on the demo page with the flash ad there?

    Maybe you should note that somewhere, John.

  5. #5
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help! Lightbox image viewer is interrupted by Other Menu JavaScript

    Help! Lightbox image viewer is interrupted by Other Menu JavaScript ?

    Link to see . Click in image Thumbnail :

    http://www.renar.com.br/samples/pref...ocalizacao.htm

    Help Please...

    Sorry for my english..

    Thx

    Roberto

  6. #6
    Join Date
    May 2006
    Location
    Sydney, Australia - Near the coast.
    Posts
    1,995
    Thanks
    0
    Thanked 8 Times in 7 Posts

    Default

    Have you tried upgrading the Lightbox to v2?
    Peter - alotofstuffhere[dot]com - Email Me - Donate via PayPal - Got spare hardware? Donate 'em to me :) Just send me a PM.
    Currently: enjoying the early holidays :)
    Read before posting: FAQ | What you CAN'T do with JavaScript | Form Rules | Thread Title Naming Guide

  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

    Quote Originally Posted by machinna
    Help! Lightbox image viewer is interrupted by Other Menu JavaScript ?

    Link to see . Click in image Thumbnail :

    http://www.renar.com.br/samples/pref...ocalizacao.htm

    Help Please...

    Sorry for my english..

    Thx

    Roberto
    Here is the trouble from code on your page:

    Code:
    #imcontainer1"+id+"{text-align:left;z-index:"+(899-id)+";
    There are various ways to fix it but, I'd try:

    Code:
    #imcontainer1"+id+"{text-align:left;z-index:"+(50-id)+";
    - John
    ________________________

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

  8. #8
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    I upgrading to v2 but occurring same error...

    jscheuer1, i change the value

    Code:
    #imcontainer1"+id+"{text-align:left;z-index:"+(899-id)+";
    to

    Code:
    #imcontainer1"+id+"{text-align:left;z-index:"+(50-id)+";
    and work perfectly

    What Z-index ? positioning ?

    *Sorry for my english

    Very Thx

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

    What Z-index ? positioning ?
    Yes, in a way. The z-index is the stack position or order. When one thing is over another because of absolute or relative positioning, it is how deep in the stack it appears. Elements with higher z-index are on top. A script like lightbox typically uses a z-index of 100 to get its special effects on top. Because the menu was using 899, it was over the lightbox. Changing it to 50 allows it to still be over everything else on the page (which it needs to be) but still be under the lightbox.
    - John
    ________________________

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

  10. #10
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Congratulations jscheuer !!!

    My page work 100% now

    Nice explanation for me


    Cya,


    Roberto

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
  •