Re: Set type preferences in InDesign
Re: Set type preferences in InDesign
- Subject: Re: Set type preferences in InDesign
- From: Shane Stanley <email@hidden>
- Date: Thu, 17 Nov 2005 07:47:17 +1100
- Thread-topic: Set type preferences in InDesign
On 17/11/05 2:02 AM, "Steve Suranie" <email@hidden> wrote:
> I¹m trying to change/set the typographers quotes in the type preferences of
> Adobe Indesign to off.
>
> If I use this code it works fine,
>
> tell application ³Adobe InDesign CS2²
> set typographers quotes of type preferences to false
> end tell
That will work if you change "type" to "text".
>
> but if I do it anywhere in relation to a document it doesn¹t work:
>
> tell application ³Adobe InDesign CS2²
>
> set typographers quotes of type preferences to false
>
> open indesignFileNAme as alias
> tell front document
> set pageCount to count of every page
> end tell
>
> end tell
You haven't set it for the document, though -- try:
tell application ³Adobe InDesign CS2²
open indesignFileNAme as alias
tell front document
set typographers quotes of text preferences to false
set pageCount to count of every page
end tell
end tell
--
Shane Stanley <email@hidden>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden