skinnytron
03-11-2008, 12:02 AM
I am building a site that has a bunch of flv's on one server and the actual code to display the site on a another server. Since I'm using an FLVplayback component to display the videos I put my player .swf on the same server as the flv files. My code to display the flash object on the page looks something like this:
<object width="512" height="422">
<param name="movie" value="http://dev.videoserver.com/swf/player.swf?flvAdvertisement=ad.flv&flvMain=main.flv">
</param><param name="wmode" value="transparent"></param>
<embed src="http://dev.videoserver.com/swf/player.swf?flvAdvertisement=ad.flv&flvMain=main.flv" type="application/x-shockwave-flash" wmode="transparent" width="512" height="422">
</embed>
</object>
Everything seems to be loading fine except I can't get the FLVplayback controls skin to load. I'm not even sure what server its looking on. I've tried specifiying the absolute path of the skin swf on my videoserver and my webserver but neither of them work.
<object width="512" height="422">
<param name="movie" value="http://dev.videoserver.com/swf/player.swf?flvAdvertisement=ad.flv&flvMain=main.flv">
</param><param name="wmode" value="transparent"></param>
<embed src="http://dev.videoserver.com/swf/player.swf?flvAdvertisement=ad.flv&flvMain=main.flv" type="application/x-shockwave-flash" wmode="transparent" width="512" height="422">
</embed>
</object>
Everything seems to be loading fine except I can't get the FLVplayback controls skin to load. I'm not even sure what server its looking on. I've tried specifiying the absolute path of the skin swf on my videoserver and my webserver but neither of them work.