: Adobe Illustrator - create new document at launch Is it possible to change Adobe Illustrator settings to create an empty new document each time it is launched?
Is it possible to change Adobe Illustrator settings to create an empty new document each time it is launched?
More posts by @Merenda852
2 Comments
Sorted by latest first Latest Oldest Best
I would save your blank document as an Illustrator Template (.ait) file and open that from Explorer/Finder instead. The new document will be named "Untitled" until you save it, so you can't accidentally save over the template.
The template can contain swatches, empty layers, view settings, your company logo in the corner, etc.
See also Working Smarter, with Templates on the Adobe Illustrator blog.
On OS X you can use an AppleScript to launch the app then create a new doc based on your settings. I've used this approach extensively, though not to create new docs.
I haven't written AS in a while so I'll leave the complicated stuff to a more qualified person. But I can give you some example solutions.
To launch the app or just activate it:
launch application "Adobe Illustrator"
Direct AS to the file you want to open (like a template) with a path or a prompt like so:
set theDoc to choose file with prompt "Select the document"
Then tell Illy to open the file:
tell application "Adobe Illustrator" to open theDoc
You can also set up some options to present in a prompt when the script is launched.
Choose between opening various common template files without the prompt
Create a new doc with the default settings
Point the applescript to a javascript that steps in once the Finder interaction is over
Activate a specific Workspace, depending on the project you're working on
Synchronize settings with a server or Dropbox directory
Spending a little time setting up the script at the start can result in noticeable cumulative time savings.
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.