Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flash not being displayed in Firefox/Seamonkey?? 1

Status
Not open for further replies.

fletchsod

Programmer
Dec 16, 2002
181
I haven't been able to get this flash applet to be displayed in the Firefox/Seamonkey web browser. It works great in Internet Explorer. So, what's wrong with the code below...

Code:
<object type='application/x-shockwave-flash' width='400' height='100'>
<param name='movie' value='flash/testi_page7.swf' />
<param name='quality' value='high' />
 <div style='padding:3px 0px 0px 7px;'>
  You do not have a flash-plugin installed
  <a href='[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer'>Click[/URL] here to download the flash-plugin</a>
 </div>
</object>

Thanks...
 
Does this work ?...
Code:
<object type='application/x-shockwave-flash'    
    [COLOR=#ff0000] data='flash/testi_page7.swf' [/color]
width='400' height='100'>
<param name='movie' value='flash/testi_page7.swf' />
<param name='quality' value='high' />
 <div style='padding:3px 0px 0px 7px;'>
  You do not have a flash-plugin installed
  <a href='[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer'>Click[/URL] here to download the flash-plugin</a>
 </div>
</object>
 
Ah! That works now. Does anyone know why does that "data" attribute cause the flash to flicker?
 
No idea, I didn't notice flickering when I just tested it on a swf file, using IE7 and Firefox 3, Flash player 10 (WIN 10,0,2,54)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top