Skip to main content
February 20, 2013
Question

Illustrator CS6 set defaults to inches

  • February 20, 2013
  • 2 replies
  • 95798 views

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........

This topic has been closed for replies.

2 replies

Jongware
Community Expert
Community Expert
February 20, 2013
dball5557 wrote:

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.

Unrelated to the actual problem, but:

Do you think it's useful to teach students to measure stroke widths in inches? A typical stroke width for a standard graphic is 0.5 pt; in inches you need to enter "0.007 in".

The same, actually, goes for Type. Historically, Type sizes are in points -- 10 pts equals your average book font size, 12 pts is "a bit large", 18 pts is a good headline, and 40 pts is HUGE. In inches, that's (hold on, bringing on the calculator ..) 0.139, 0.167, 0.25, and 0.556.

Of course this is assuming your students are not going to design 40ft wide billboards ... at its actual size.

February 20, 2013

Thats a question for faculty, they have always wanted inches to be the default.   I used to be able to set the prefs and simply put them into the User Template, but Indesign isn't liking that with CS 6.  Making things difficult here!   I put in a bug report with Adobe, but not sure anything will be done.  I don't think putting the preset prefs in the User Template was ever supported in the past.  Been getting lucky!

Larry G. Schneider
Community Expert
Community Expert
February 20, 2013

Look at DocumentPresets properties.

February 20, 2013

I actually have been, but unable to figure it out.  Document Units, Ruler Units, etc.  Still no luck....

tell application "Adobe Illustrator"

          tell document preset

                    set document units to inches

          end tell

end tell

February 21, 2013

Would think others would have requested this over the years.

oh, you InDesign users are so spoiled...requests here mean nothing...in this side of the world, with new releases, we don't expect any additions to the DOM, we're just happy to see previous features still work


CarlosCanto wrote:

Would think others would have requested this over the years.

oh, you InDesign users are so spoiled...requests here mean nothing...in this side of the world, with new releases, we don't expect any additions to the DOM, we're just happy to see previous features still work

Maybe, but this isn't for me I'm not an InDesign user.....lol   Trying to do what was asked by the faculty!