Copy link to clipboard
Copied
I'm running a basic InDesign Data Merge VBScript from within MS Access. All good except when I initiate using myInDesign = CreateObject ("InDesign.Application.2022") the main "Welcome to InDesign" application window opens up maximised. Slightly annoying as I'd just like it to load minimised (or load and immediately minimise itself) and run in the background.
Is there a line of VBScript that would do this? (Or JavaScript alternately?)
And here's the VBS version:
Set myInDesign = CreateObject("InDesign.Application.2022")
myInDesign.LayoutWindows.Item(1).Minimize
Copy link to clipboard
Copied
In JavaScript you can minimize it like so:
app.layoutWindows[0].minimize();
Copy link to clipboard
Copied
And here's the VBS version:
Set myInDesign = CreateObject("InDesign.Application.2022")
myInDesign.LayoutWindows.Item(1).Minimize
Copy link to clipboard
Copied
I'll also try this with ExtendScript:
app.generalPreferences.showStartWorkspace = false ;
Regards,
Uwe Laubender
( Adobe Community Professional )
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more