Re: QuarkXpress find and replace with a variable
Re: QuarkXpress find and replace with a variable
- Subject: Re: QuarkXpress find and replace with a variable
- From: email@hidden
- Date: Wed, 24 Jan 2001 14:38:06 -0800
Try this:
on open x
tell application "QuarkXPress(tm)"
open x
tell document 1
tell text box 1
tell story 1
repeat with i from 1 to count of usenglish
set (every text where it is (item i of list1) as string ) to
(item i of list2) as string
end repeat
end tell
end tell
end tell
end tell
end open
>
>Does anyone out there know why this droplet isn't working?
My guess is that you're expecting an automatic coersion from list reference
to string that isn't happening.
ES