Calling VBScript from Javascript or vice versa? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T14:22:44Zhttp://stackoverflow.com/feeds/question/466059http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/466059/calling-vbscript-from-javascript-or-vice-versa3Calling VBScript from Javascript or vice versa?GoingTharn2009-01-21T16:53:06Z2009-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#4660943Answer by Patrick Cuff for Calling VBScript from Javascript or vice versa?Patrick Cuff2009-01-21T17:01:37Z2009-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#4787970Answer by mrTomahawk for Calling VBScript from Javascript or vice versa?mrTomahawk2009-01-26T03:39:59Z2009-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><input id="renameIcon" name="renameIcon" type="image" src="images/rename.ico" onclick=renameUser() onmouseover='vbscript: if showStat <> "busy" Then call showStatus(button4.title)' onmouseout='vbscript: if showStat <> "busy" Then call showStatus("")'>
</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>