Quote Originally Posted by persuit179 View Post
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
width="468" height="61">
<param name="movie" value="xar26AD.swf" />
<param name="quality" value="high" />
<param name="menu" value="true" />
<EMBED src="xar26AD.swf" quality="high" bgcolor="#FFFFFF" WIDTH="468" HEIGHT="61" NAME="yourmovie" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
<video src="xar26AD.swf" controls width="100%" height="100%"></video>
</object>
The bold items should be the important bits. The code above is looking for a file names xar26AD.swf in the same directory as the page/script. You should be able to add a relative path to that (or failing that, an absolute path), such as "images/xar26AD.swf" (or "../images/xar26AD.swf", if the page/script is in a directory that is the same level as the images directory).

-- Ben