All,<br><br>There was a post on this list back in May from Geoff linking to a zip file that was a combination of SWFObject and the Flash Javascript Integration Kit.<br><br>I am attempting to use this in a current project. Unfortunately, there is a line in the 
JavaScriptProxy.as that is causing MTASC to throw an error when compiling the file.<br><br>The error occurs at line 167:<br><br>var f:Function = call;<br><br>Apparently, MTASC does not like call being referenced. I assume that the call in question is the function listed next in the code (line 190).
<br><br>To get it to compile, I changed the line to this:<br>var f:Function = this["call"];<br><br>and:<br>var f:Function = this.call;<br><br>which seem likely to work, but do not. In Firefox I can see a trace of the function being called and then traces of the queue being checked, but the simple doAlert Javascript function is not getting called.
<br><br>Can anyone advise me on wether there is a working work-around for the line "var f:Function = call;" that caused MTASC compilation to fail?<br><br>Leif<br><br><br><br>