Re: (no subject)
Re: (no subject)
- Subject: Re: (no subject)
- From: Michelle Steiner <email@hidden>
- Date: Mon, 4 Feb 2002 15:12:38 -0700
On 2/4/02 2:47 PM, Grams, Mike J. (CGC) <email@hidden> wrote:
>
Can I set the Preferred Memory size of Applications (Illustrator, Photoshop,
>
ect...) on my Mac using Applescript??? Any examples??
set the fileToChange to choose file of type "APPL"
tell application "Finder"
set total partition size of application file fileToChange to 400
set minimum size of application file fileToChange to 400
end tell
You must set the partition size before setting the minimum size, and the
minimum size can't exceed the partition size. Also, the number is in
kilobytes, so the "400" in the above example sets the partition to 400K
bytes.
--Michelle
----------------------------------------------------------------------
| Michelle Steiner | We're not human beings having a spiritual |
| | experience. We're spiritual beings |
| email@hidden | having a human experience. |
----------------------------------------------------------------------