Hi there is a well documented bug in firefox(since version 0.9!) where hidding a flash, java applet, quicktime... really anything you can put in a "embed" or "object" tag makes the embeded content be restarted/reloaded when shown back again.

It seems to occur when modifying any display related attribute on css. Normally this wouldn't be a problem until you start doing complex things like adding a tabbed control to your site with different flash objects on each tab. where you need to jump from tab to tab and keep your state on the flash objects.

Has anyone found a workaround? I've tried hidding the content using the following css, but firefox still renders the flash object while hidding the parent:

.hideme {
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  height: 0 !important;
  width: 0 !important;
  border: none !important;
  visibility: hidden !important;
}

while this stops the flash object from reloading... it is still rendered on the page behind other flash objects when switching tabs.

Here is the bug report on bugzilla: https://bugzilla.mozilla.org/show_bug.cgi?id=90268

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

Have you tried positioning the Flash off the page instead of hiding it?

.hideme{
  left: -3000px;
}
link|improve this answer
I'll be darn!... I swear I did this, but I had left a position css attribute in there, and it forced the swf to reload... took it out and it works perfectly! Kinda wish they fixed that bug though(its about time!) – justlost Aug 14 '09 at 14:19
2  
it's important to note that you can't even touch position attribute. It resets flash as well. – wiktorschmidt Dec 22 '10 at 15:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.