ohdang888 Posted March 23, 2008 Share Posted March 23, 2008 This code is drawing the gamefile.... <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="650" height="600"> <param name="movie" value="gamefile/yourface.swf"> <param name="quality" value="medium"> </object> In IE, it loads and works fine, But in Firefox it doesn't load. Whats wrong??? Thanks! Link to comment https://forums.phpfreaks.com/topic/97534-file-not-loading/ Share on other sites More sharing options...
MadTechie Posted March 23, 2008 Share Posted March 23, 2008 not a php problem in anyways! but in anycase you forgot to embed it Both <embed> and <object> actually does the same thing, but most people use both because one is only recognized by Mozilla browsers (Netscape, Firefox), and the other only by Internet Explorer. Internet Explorer browsers uses <object> tag; Mozilla browsers (such as Netscape and Firefox) use <embed> tag. object is IE embed is others <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="" id="myFlashMovie" width=481 height=86> <param name=movie value="flips2.swf"> <embed play=false swliveconnect="true" name="myFlashMovie" src="flips2.swf" quality=high bgcolor=#FFFFFF width=481 height=86 type="application/x-shockwave-flash" ....> </embed > </object > Link to comment https://forums.phpfreaks.com/topic/97534-file-not-loading/#findComment-499037 Share on other sites More sharing options...
KrisNz Posted March 23, 2008 Share Posted March 23, 2008 This might interest/help you... http://www.alistapart.com/articles/flashsatay/ Link to comment https://forums.phpfreaks.com/topic/97534-file-not-loading/#findComment-499053 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.