What am I doing wrong here?

Soldato
Joined
5 Aug 2003
Posts
8,407
Location
Essex
I'm planning on having all the videos on my site in flash format and in h.264 format, the hd format is fine but I can't get the flash videos to play on the html pages, if you look at http://www.mia-media.co.uk/miatestred/media/maxpayne.html flash box just sits there and doesn't play. But if I directly link to the movie swf here http://www.mia-media.co.uk/miatestred/stream/maxpayne/flv/movie.swf it does play fine, anyone know why it isn't working on the html page, the code I'm using is as follows

Code:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="480" height="422" title="Max Payne Film Noir">
      <param name="movie" value="http://www.mia-media.co.uk/miatestred/stream/maxpayne/flv/movie.swf" />
      <param name="quality" value="high" /><param name="LOOP" value="false" /><param name="PLAY" value="false" />
      <embed src="http://www.mia-media.co.uk/miatestred/stream/maxpayne/flv/movie.swf" width="480" height="422" loop="false" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" play="false"></embed>
    </object>
 
Back
Top Bottom