Re: Quark Data Merge
Re: Quark Data Merge
- Subject: Re: Quark Data Merge
- From: JJ <email@hidden>
- Date: Fri, 20 Jul 2001 10:29:02 +0200
>
I have an Applescript from Sal Soghoian that I have modified to merge data
>
into a Quark document. So far so good. The following script works fine:
>
(...)
>
>
However this script has to look at every story on every page of the Quark
>
document. So thought I would modify it further so that it only looks on the
>
current page as the following:
>
Every story on every page?
(...)
>
tell application "QuarkXPress 4.1"
>
activate
>
tell document 1
>
set (every text of every story of the current page where it
>
is "~customer~") to the_customer
Then:
set (every text of every story where it is ...
Not "every story of the current page"
JJ