R – Flash SWF not playing!

actionscript-3flash

I created a custom video skin for my movie, and published the swf. The file plays on my Mac (using Flash player v9) but it will not play on my PC (using Flash player 10). When I uploaded it to the host, neither players will play the swf. The bitmaps in the flash file show up, but the movie won't play. I don't know if it is how I exported it or what, but it will not play! Any Idea why this is happening?

The video is hosted here:
http://hqinternetsolutions.com/YOGIPATCH/index.html

Here is my Actionscript:
flvPlayback.playPauseButton = playpausebtn;
flvPlayback.muteButton = mutebtn;
flvPlayback.volumeBar = volbar;
flvPlayback.seekBar = seekbar;

And my HTML embedded flash:

<div id="movie">
    <object id="movie" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="440" height="273">
    <param name="movie" value="file.swf">
    <param name="quality" value="high">
    <embed src="file.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="440"
    height="273"></embed></object>
</div>

Best Answer

Just had a look using Firebug. Your swf appears to be referencing the following URL:

http://hqinternetsolutions.com/Users/larrykain/Desktop/flash%20skin/fullaquatic.flv

It's returning a 404 so it can't find the file. Looking at the URL, check the reference to how you've embedded it in the swf file.

Related Topic