Okay, well, I've been digging around a little more, and it seems that the issue
just has something to do with how Flash deals with being inside a table, and
what area Flash thinks that it's got to draw in, or something.
Let's say you take the HTML from that crystalhotsprings.net link and simplify
it down a bit, the little code snippet that you'll find at the bottom of this
message will reproduce the problem (you'd have to download the actual .swf,
too).
So we've got a Flash file inside one table cell. There's two ways to make the
problem go away:
Remove the table tags
Change the width="100%" inside the EMBED tag to an absolute number
Doing either of those things will result in a non-obfuscated flash file. I
imagine that there's probably something in these particular Flash files which
result in this behavior, 'cause I'm sure that there's got to be plenty of other
examples of working Flash files out there which are set to take up 100% of a
table cell, but these certainly don't like it.
<html><head><title></title></head><body>
<table width="100%"><tr><td>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve rsion=6,0,29,0">
<param name="movie" value="Media/default_content.swf">
<embed src="Media/default_content.swf"
width="100%"
pluginspage="
http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash">
</embed>
</object>
</td></tr></table>
</body></html>