Re: Need to script tracking in multiple Quark files-correction
Re: Need to script tracking in multiple Quark files-correction
- Subject: Re: Need to script tracking in multiple Quark files-correction
- From: Bill Metzinger <email@hidden>
- Date: Thu, 23 Oct 2003 09:18:10 -0400
Ethan,
There are subtle differences between Quark 4 and 5 (and 6 for that
matter), but the vast majority of your old stuff will still work.
The tracking properties is the same.
tell application "QuarkXPress"
activate
tell text box 1 of page 1 of document 1
set x to track of story 1 as number
set x to x + 10
set track of story 1 to x
--return properties of story 1
end tell
set currFile to ((file path of document 1 as text) & "done")
save document 1 in file currFile without template
end tell
To get properties uncomment the return properites line.
Try changing it and seeing what you get...
return properties of story 1
return properties
return properties of paragraph 2
return properties of word 3 of paragraph 1
....
} The software box said 'Requires Windows 95, or better.'
} So I bought a Macintosh.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.