RE: Dialogs (Open file (indesign) without dialog missing fonts & missing)
RE: Dialogs (Open file (indesign) without dialog missing fonts & missing)
- Subject: RE: Dialogs (Open file (indesign) without dialog missing fonts & missing)
- From: "Paul Bunch" <email@hidden>
- Date: Wed, 20 Nov 2002 14:35:16 -0000
- Thread-topic: Dialogs (Open file (indesign) without dialog missing fonts & missing)
I have tried both:
tell
set user interaction level to never interact
open alias "Some valid path"
try
print(<n>)without print dialog
end try
set user interaction level to interact with all
end tell
&
tell
set user interaction level to never interact
open alias "Some valid path"
try
print(<n>)
end try
set user interaction level to interact with all
end tell
Also:
tell
set user interaction level to never interact
open alias "Some valid path"
try
set user interaction level to never interact
print(<n>)
set user interaction level to interact with all
end try
set user interaction level to interact with all
end tell
tell
set user interaction level to never interact
open alias "Some valid path"
try
set user interaction level to never interact
print(<n>) without print dialog
end try
set user interaction level to interact with all
end tell
All are in a repeat loop to print a folder of files.
Paul
____Original Issue_________
Subject: Open file (indesign) without dialog missing fonts & missing
links
From: Bjorn Van Blanckenberg <email@hidden>
To: posting Applescript <email@hidden>
Is it possible to open the indesigndoc and overrule the dialogs of
missing fonts and links
<Snip>
Subject: Re: Open file (indesign) without dialog missing fonts & missing
links
------------------------------------------------------------------------
--------
At 12:18 PM +0100 11/18/02, Bjorn Van Blanckenberg wrote:
>
Is it possible to open the indesigndoc and overrule the dialogs of
missing
>
fonts and links
Yes. You can use the "user interaction level" property to disable
dialogs:
tell application "InDesign 2.0.1"
set user interaction level to never interact
open alias "Some valid path"
set user interaction level to interact with all
end tell
-peter
------------------------------------------------------------------------
------
<snip>
From: Shane Stanley <email@hidden>
To: AS lists <email@hidden>
On 20/11/02 2:13 AM +1000, Paul Bunch, email@hidden, wrote:
>
Peter's solution is fine for opening a document, but I still get a
>
missing fonts dialog at print time...
Are you also using the "print dialog" parameter in the print command?
--
Shane Stanley, email@hidden
This e-mail message and attachment(s) are intended only for the recipient(s) named above.
If you receive this e-mail by mistake, please telephone us at the number below to let us know of the error.
If this e-mail message and attachment(s) contain privileged or otherwise legally protected information, disclosure of the information to anyone other than the named recipient(s) is not authorised, and you may not lawfully read, copy, or otherwise use this e-mail message and attachment(s) unless you are a named recipient or a named recipient's authorised representative.
Software 2000 International Limited
VAT No. GB 630 6844 43
Registered at the address below
Registered in England No. 1755090
Software 2000 International Limited
The Magdalen Centre
Oxford Science Park
Oxford OX4 4GA
United Kingdom
Fax at +44-1865-784201
Phone at +44-1865-784200
_______________________________________________
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.