I am trying to use HTML to embed a flash video, however I encounter the following errors:
Error #2044: Unhandled skinError:. text=[IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="
Error #2035: URL Not Found. URL: SkinOverPlaySeekStop.swf"]
Here is my HTML code:
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
width="640" height="480" >
<param name="movie" value="Content/example.swf">
<param name="quality" value="high">
<param name="play" value="true">
<param name="loop" value="false">
<embed src="Content/example.swf" width="640" height="480" play="false" loop="false" quality="high"></embed>
</OBJECT>
Whenever I open the page I'll get a popup window with the above errors and once I click "continue" it will go ahead and play the video, but without the control skin. Can anyone tell me how to get the skin to show up?