We have a requirement to allow the user to Insert a flash movie FLV with a skin/player SWF using the Flashmanager in the WYSIWYG editor. As in the user must be able to click the flash button to open Flashmanager, and insert an FLV. The requirement for this is to allow content to wrap around the FLV and avoid using a user control.
So far we have not found a good way to do this. Any help would be appreciated. I've noticed that even when we embed a movie with a skin and use parameters the FLV isn't playing.
I have updated the MIME settings on IIS on localhost (for testing), allowed scripting, and am using an FLV and SWF locally without an absolute path. Below is some sample code.
So far we have not found a good way to do this. Any help would be appreciated. I've noticed that even when we embed a movie with a skin and use parameters the FLV isn't playing.
I have updated the MIME settings on IIS on localhost (for testing), allowed scripting, and am using an FLV and SWF locally without an absolute path. Below is some sample code.
<p> |
<object height="360" width="480" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> |
<param name="flashvars" value="/Files/movie.flv"> |
<param name="movie" value="/Files/videoPlayer.swf"> |
<embed src="/Files/videoPlayer.swf" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=/Files/Movie.flv" width="480" height="360"> |
</object> |
</p> |