Calling VBScript from Javascript or vice versa? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T14:22:44Z http://stackoverflow.com/feeds/question/466059 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/466059/calling-vbscript-from-javascript-or-vice-versa 3 Calling VBScript from Javascript or vice versa? GoingTharn 2009-01-21T16:53:06Z 2009-01-26T03:39:59Z <p>Is it possible to call a VBScript function from a javascript call, or alternately call javascript from a VBScript call?</p> http://stackoverflow.com/questions/466059/calling-vbscript-from-javascript-or-vice-versa/466094#466094 3 Answer by Patrick Cuff for Calling VBScript from Javascript or vice versa? Patrick Cuff 2009-01-21T17:01:37Z 2009-01-21T17:01:37Z <p>Yes, if your main script is a <a href="http://msdn.microsoft.com/en-us/library/15x4407c.aspx" rel="nofollow">Windows Script File</a> (WSF). </p> <p>WSF files can include other script files and execute code from multiple engines.</p> http://stackoverflow.com/questions/466059/calling-vbscript-from-javascript-or-vice-versa/478797#478797 0 Answer by mrTomahawk for Calling VBScript from Javascript or vice versa? mrTomahawk 2009-01-26T03:39:59Z 2009-01-26T03:39:59Z <p>This is also possible within HTA's by specifying the language when the function is called, like this: </p> <pre><code>&lt;input id="renameIcon" name="renameIcon" type="image" src="images/rename.ico" onclick=renameUser() onmouseover='vbscript: if showStat &lt;&gt; "busy" Then call showStatus(button4.title)' onmouseout='vbscript: if showStat &lt;&gt; "busy" Then call showStatus("")'&gt; </code></pre> <p>see here for a more in depth example: <a href="http://docs.google.com/Doc?id=ajh85hfcbjj6_457g7v6fgfh" rel="nofollow">http://docs.google.com/Doc?id=ajh85hfcbjj6_457g7v6fgfh</a></p>