Begin forwarded message:
Date: August 15, 2005 3:08:47 PM CDT
Subject: Re: Simple InDesign Script
On Aug 15, 2005, at 3:05 PM, Don Fuller wrote:
Hello all,
I am trying to write a simple applescript to do the following:
1. Open InDesign and create a new doc with specific dimensions.
2. Create a Graphics box in the doc with specific dimensions and location.
3. Place a graphic in that box.
4. Step and Repeat that object 8-up in my doc.
5. Save the doc.
Forgot to add my script so far.
tell application "InDesign CS"
set myDocument to make document
tell document preferences of myDocument
set page height to "9.75in"
set page width to "14.75in"
set page orientation to landscape
set document bleed top offset to ".125in"
set document bleed uniform size to true
tell myDocument
make rectangle
end tell
end tell
end tell