origin of de bug from http://drupal.org/user/66894 (separate support request).
OK, for me the probleme is solve by adding this code after the line 465:
$('#frameContainer').append('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');
,

if ($.browser.mozilla) {    //because the probleme is not on IE
      if (src.indexOf(".swf") != -1) {   //because the probleme is on swf
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }

It is maybe the same kind of think of the PDFs on line 648 ?

Merci, to have a look to that...

Comments

steveoriol’s picture

Oups ! the origin of this issue is http://drupal.org/node/350049 not http://drupal.org/user/66894 (link to Stella).
and file I change is "lightbox.js"
I can change "my Comment" but not "my Issue" sorry for that.

stella’s picture

Status: Active » Fixed

Thanks! I've committed this and it will be included in the next dev release, available later today.

stella’s picture

Released in Lightbox2 6.x-1.9 and 5.x-2.9.

Cheers,
Stella

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.