Question
Is there a way to execute the .vbs file from a html page ? Or by using PHP ?
I have a .vbs file that executes a .jsx script.
//vbs code
Set myInDesign = CreateObject("InDesign.Application")
Msgbox("This message from Vbscript")
myJavaScript = "D:\Ivoclar Vivadent\Scripts\Import-XML-Test.jsx"
myInDesign.DoScript myJavaScript, 1246973031
I can run this script through command prompt using the cscript command. Is there a way to execute this file from a html page or using PHP ?
Regards,
Shruti
