Reputation: 653
I have some videos at mypace.com. and I added them to an html page. One of my friend warned me (and he had been warned by others) that he couldn't see the videos.
This problem occures with these systems as far as I know:
Windows 7 + Google Chrome 16.0.899.0 (with a warning about update server)
Pardus (Linux) + Firefox 7.0.1
I guess a trojan may cause this but many people have this problem. These people are using their browser without any other problem.
I want to share some of my code:
<param name="allowFullScreen" value="true"/>
<param name="wmode" value="transparent"/>
<param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m=0,mr=110475301,t=1,mt=video"/>
<param name="QUALITY" value="high" />
</object>
<br />
<br />
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="425px" height="360px">
<param name="allowFullScreen" value="true"/>
<param name="wmode" value="transparent"/>
<param name="movie" value="http://mediaservices.myspace.com/services/media/embed.aspx/m=0,mr=110475417,t=1,mt=video"/>
<param name="QUALITY" value="high" />
</object>
<br />
<br />
Upvotes: 1
Views: 158
Reputation: 1856
Please try using SWFObject to embed your flash material, as this is the accepted 'cross-compliant" means of doing so. Even the HTML5 Boilerplate examples and initializr HTML5 demos come with SWFObject pre-installed.
Upvotes: 1