This content has been marked as final.
Show 2 replies
-
1. Re: Execute my .jsx script from .vbs (without opening ExtendScript)
jmituzas Sep 29, 2011 12:27 PM (in response to jmituzas)This will open InDesign and run script
Set myInDesign = CreateObject("InDesign.Application.CS5")
Msgbox("This message from Vbscript")
myJavaScript = "C:\test2.jsx"
myInDesign.DoScript myJavaScript, 1246973031
Now if I can figure out how to Close InDesign .. not document the application itself?
Thanks in advance,
Joe
-
2. Re: Execute my .jsx script from .vbs (without opening ExtendScript)
Harbs. Oct 2, 2011 10:54 AM (in response to jmituzas)jmituzas wrote:
Now if I can figure out how to Close InDesign .. not document the application itself?
In ExtendScript it's:
app.quit()


