Re: Quark & Applescript
Re: Quark & Applescript
- Subject: Re: Quark & Applescript
- From: Shane Stanley <email@hidden>
- Date: Wed, 08 Nov 2000 08:17:48 +1100
On 8/11/00 7:55 AM +1000, gonzalo, email@hidden, wrote:
>
Is there any possibility to extrac of Quark Text box, just the visible
>
text, with applescript ??.
Sure:
tell application "QuarkXPress 4.11"
tell document 1
set x to object reference of (text box 1 whose selected is true)
set y to offset of character -1 of line -1 of x
save text from character 1 to character (y + 1) of x in "Macintosh HD:Some
text"
end tell
end tell
--
Shane Stanley, email@hidden