Mobile app version of vmapp.org
Login or Join

Login to follow query

More posts by @Merenda852

2 Comments

Sorted by latest first Latest Oldest Best

 

@Sims5801359

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.

10% popularity Vote Up Vote Down


 

@Phylliss782

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.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme