Illustrator CS6 set defaults to inches
In Illustrator you can set inches for the units by doing the following:
Go under "Illustrator Menu"
Select "Units " under "Preferences" menu item
Set "Stroke" to inches
Set "Type" to inches
How can I make a startup script so those values are set to inches for "Stroke" and "Type"?? So when a student makes a new document its already set to inches.
For Indesign I did the following with Applescript:
tell application "Adobe InDesign CS6"
tell view preferences
set ruler origin to page origin
set horizontal measurement units to inches
set vertical measurement units to inches
end tell
end tell
Can't get it scripted for Illustrator to default to inches. Anyone have any idea on how I would go about scripting this?
tell application "Adobe Illustrator"
tell startup presets
set ruler units to inches
end tell
end tell
Or something along those lines........
