Im not going to pretend I’m in anyway talented at building website’s. I am attempting a basic one to display a small portfolio for university, however, the code that I am using (provided by flash mx 2004 it’s self) is having alot of difficulties loading on Internet Explorer. It works well on Firefire, but not working on all browsers is unacceptable.
What is the correct way to embed a flash file into a website using HTML?
The code I am currently trying is:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="x" height="x" id="x">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<embed src="x" quality="high" bgcolor="#000000" width="x" height="x" name="x" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>