Is it possible to call a VBScript function from a JavaScript call, or alternately call JavaScript from a VBScript call?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes, if your main script is a Windows Script File (WSF). WSF files can include other script files and execute code from multiple engines. |
|||
|
|
|
Calling a VBScript function from Javascript Your VBScript:
Your Javascript:
Calling a Javascript function from VBScript
|
||||
|
|
This is also possible within HTA's by specifying the language when the function is called, like this:
see here for a more in depth example: http://docs.google.com/Doc?id=ajh85hfcbjj6_457g7v6fgfh |
|||
|
|