The path to BLAC.swf is incorrect for the page you are importing it to. It should be:
/Games/BlackBox/BLAC.swf
Otherwise, it appears to work - that is it loads the object, just can't find the .swf file.
But there could be other issues. Ideally, the page with the Flash object on it should have virtualy no other code (the center tag is OK). This might not matter though unless you are concerned with details of validation for the 'top' page after import, or warnings that some browser's developer tools may give. The path certainly does matter, so change the object/embed as shown (in two places, scroll the code block to see the other spot):
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="200" height="150" id="BLAC" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="/Games/BlackBox/BLAC.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#cccccc" /><embed src="/Games/BlackBox/BLAC.swf" quality="high" bgcolor="#cccccc" width="200" height="150" name="BLAC" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
Bookmarks