Problem embedding Video Player
So this may sound really dumb, but I am having problems with my embedding. The problem seems to be when I attempt to embed using
<object> <param><embed> etc...
The .swf shows up but I don't see a player nor anything from the xml playlist (thumbs).
However, the really odd thing is that when I embed it using <iframe src=""> there are no problems.
I also Published through Flash and it seems to work fine in it's own .html doc, but I can't get it to work in my page without an iframe.
Regular embedding (does not work)
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="900" height="440" id="motiongraphicsVideoPlayer" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="flash/motiongraphicsVideoPlayer.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#cbcfd8" /> <embed src="flash/motiongraphicsVideoPlayer.swf" quality="high" bgcolor="#cbcfd8" width="900" height="440" name="motiongraphicsVideoPlayer" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
iframe (does work)
Code:
<iframe src="flash/motiongraphicsVideoPlayer.swf" width="900" height="440" frameborder="0" scrolling="no"></iframe>
I really don't want to use iframes, but I can't get it to work any other way.