vote up 3 vote down star
2

Is it possible to call a VBScript function from a javascript call, or alternately call javascript from a VBScript call?

flag

2 Answers

vote up 3 vote down check

Yes, if your main script is a Windows Script File (WSF).

WSF files can include other script files and execute code from multiple engines.

link|flag
vote up 0 vote down

This is also possible within HTA's by specifying the language when the function is called, like this:

<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("")'>

see here for a more in depth example: http://docs.google.com/Doc?id=ajh85hfcbjj6_457g7v6fgfh

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.