Here’s a great example of bi-directional communication with Flash / Actionscript and Javascript inside an HTML form using SWFObject with my SWFFormFix patch.
http://devel.teratechnologies.net/swfformfix/extinterfaceexample.php
Unlike my previous example pages, this one includes the source code for the Flash movie (the FLA). Let me know if you like it!
« SWFObject 1.5 with Integrated SWFFormFix 1.0.0 SWFFormFix 2.0 Released! »

Hi Steve
I tried the example at [url=http://devel.teratechnologies.net/swfformfix/extinterfaceexample.php]http://devel.teratechnologies.net/swfformfix/extinterfaceexample.php[/url]
when i refresh the page i get a javascript error in IE 6 and also the click event "Send text to flash" fails in both IE 6 and IE 7
[:)] Tks Steve, i test it in .net V2 (web form) with the fla inside a wizard object and it works!!! It works even betwin posts in the same page! You Did it ou are the man!!!
I new that the problem in IE7 were the cach problem, it didnt hapen in IE6, im making use of your noCacheIE() function.
TKS a LOT [:)]
the code inside the wizard step is :
<code>
<script type="text/javascript" >
window["Flasher1"] = new Object();
</script>
<script type="text/javascript" src="swfformfix.js"></script>
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript" src="x.js"></script>
<!— ****** for the flash object – Remember to allow script source acces on IIS;
—>
<div id="Flasher1" style="WIDTH: 572px; HEIGHT: 115px">
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject(noCacheIE("fileUpload_clientside.swf"), "Flasher1", "572px", "115px", "8", "");
so.addParam("wmode","Transparent");
so.addParam("quality","High");
so.addParam("play","True");
so.addParam("loop","False");
so.addParam("menu","False");
so.addParam("scale","Showall");
so.addVariable("precache", "false");
so.addVariable("uploadPage","Criar_Requisicao.aspx");
so.addVariable("allowScriptAccess","always");
so.addVariable("Cancelar","Cancelar()");
version=0
if (navigator.appVersion.indexOf("MSIE")!=-1){
temp=navigator.appVersion.split("MSIE")
version=parseFloat(temp[1])
}
if (version>=5.5){
so.addParam("wmode", "transparent");
}
so.write("Flasher1");
// ]]>
</script>
</div>
<script type="text/javascript">SWFFormFix("Flasher1");</script>
<script type="text/javascript">SWFFormFixAuto();</script>
</code>
ZeX, thanks to your sample I could make it work. thank you. steve, please add the nocache trick to the doc in your file. thanks again.