Re: Quark vs InDesign - satisfying a test
Re: Quark vs InDesign - satisfying a test
- Subject: Re: Quark vs InDesign - satisfying a test
- From: Shane Stanley <email@hidden>
- Date: Mon, 13 Oct 2003 08:45:42 +1000
On 13/10/03 12:12 AM +1000, Luca BASSINI, email@hidden, wrote:
>
My script is this:
>
>
tell application "InDesign 2.0.2"
>
set storyObjRef to object reference of every text frame whose label of
>
parent story is "TheNameOfTheStory"
>
end tell
>
>
There is no result. Where am I wrong?
You should be able to say:
text frames of story "TheNameOfTheStory"
but InDesign 2 won't let you use story labels like that. To get around it,
you can use something like:
text frames of (object reference of story 1 whose label is
"TheNameOfTheStory")
--
Shane Stanley, email@hidden
_______________________________________________
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.