huh...now that I think about it I have external javascript files with the flash movies:
Code:
function Runcow()
{
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="413" height="236">\n');
document.write('<param name="movie" value="cowabunga.swf" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="wmode" value="transparent" />\n');
document.write('<embed src="cowabunga.swf" width="413" height="236" wmode="transparent"></embed>\n');
document.write('</object>\n');
}
I did this to get rid of the box that would highlight swf's when you mouse over them at first. Would this be making them restart?
Bookmarks