Suppress dialog box in Illustrator
Which dialog?
Chat: open-automation @ gitter
Code: open-automation & dominickp @ GitHub
Tools: Switch, Pitstop, EPMS, Veracore, PageDNA, SmartStream, Metrix
Code: open-automation & dominickp @ GitHub
Tools: Switch, Pitstop, EPMS, Veracore, PageDNA, SmartStream, Metrix
It's funny because it seems that on my side, whatever the interaction settings I defined, Switch switch interaction off but don't reset it after the file passed the configurator.
Anyway you can change the userrinteraction level through a script on the open command instead of automatic.
Use this and see if it works for you:
HTH
Loic
Anyway you can change the userrinteraction level through a script on the open command instead of automatic.
Use this and see if it works for you:
Code: Select all
var main = function() {
var uip = app.userInteractionLevel;
app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS
app.open ( File ( String($infile) ) );
app.userInteractionLevel = uip;
}
main();
Loic