Ciao 
avevo il tuo stesso problema e penso finalmente di averlo risolto (spero, perchè mi mancano alcuni test :gren: )!
ho trovato due modi per farlo:
puoi usare manualmente JavaScript+VBScript... guarda qui (http://www.xs4all.nl/~ppk/js/flash.html)
oppure, come ho fatto io, scaricare il kit di cui parlavi tu dal sito della macromedia (in effetti è diverso da quello di cui si parla nelle guide di questo sito), installarlo (ti basta lanciare FlashDetection.mxp dalla cartella ..\Flash_Detection_Kit\Dreamweaver Behavior) e poi usando i behaviors di dreamweaver costruire la pagina... è molto semplice, ammeno che tu non abbia esigenze particolari!
in ogni caso, il codice che ti genera questa procedura è il seguente:
codice:
<html>
<head>
<title>Untitled Document</title>
<META HTTP-EQUIV="refresh" content="3;URL=de/home_de.htm">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_executeFlashDetection(){
//This is a stand in JavaScript function that interacts with the Dreamweaver Behavior Menu.
//This function can be removed when this page is deployed if desired.
}
//-->
</script>
</head>
<body onLoad="MM_executeFlashDetection('file:TUO PATH HTML','file:TUO PATH HTML','6','0','79',false)">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0" width="80" height="80">
<param name="movie" value="flash_detection.swf?flashContentURL=file'TUO PATH HTML FLASH'&altContentURL=file:TUO PATH HTML.htm&contentVersion=6&contentMajorRevision=0&contentMinorRevision=79&allowFlashAutoInstall=false">
<param name="quality" value="low">
<param name=FlashVars value="flashContentURL=file:TUO PATH FLASH&altContentURL=file:TUO PATH HTML&contentVersion=6&contentMajorRevision=0&contentMinorRevision=79&allowFlashAutoInstall=false">
<embed src="flash_detection.swf?flashContentURL=file:TUO PATH HTML&altContentURL=fileTUO PATH HTML&contentVersion=6&contentMajorRevision=0&contentMinorRevision=79&allowFlashAutoInstall=false" FlashVars="flashContentURL=file:TUO PATH FLASH&altContentURL=fileTUO PATH HTML.htm&contentVersion=6&contentMajorRevision=0&contentMinorRevision=79&allowFlashAutoInstall=false" quality="low" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="80" height="80"></embed></object>
</body>
</html>