Re: Dialogs (Open/Print file (PhotoShop) without dialog missing fonts )
Re: Dialogs (Open/Print file (PhotoShop) without dialog missing fonts )
- Subject: Re: Dialogs (Open/Print file (PhotoShop) without dialog missing fonts )
- From: Paul Bunch <email@hidden>
- Date: Tue, 03 Dec 2002 10:40:53 +0000
Hi Shane,
This gets rid of the error, but I still get clipping, embedded font and
print dialogs.
Currently the script now says:
set folderpath to (choose folder) as string -- the file path as text
tell application "Finder"
tell folder folderpath
try
set pfilelist to (every file whose creator type is "8BIM")
alias list
on error
set pfilelist to (every file whose creator type is "8BIM") as
alias as string
end try
end tell
end tell
tell application "Adobe Photoshop 7.0"
activate
set display dialogs to never
repeat with i from 1 to (count pfilelist)
set testfile to item i of pfilelist
try
open testfile showing dialogs never
end try
delay 5
--try
--ignoring application responses
print current document
--end ignoring
--end try
--delay 20
try
ignoring application responses
close current document saving no
end ignoring
end try
end repeat
set display dialogs to always
quit
end tell
Is this another "feature request" for Adobe?
Paul
On 2/12/02 8:56 pm, "Shane Stanley" <email@hidden> wrote:
>
On 2/12/02 11:48 PM +1000, Paul Bunch, email@hidden, wrote:
>
>
> I've tried this one but I get an error...
>
>
You've used "display dialog" instead of "display dialogs" -- that final s
>
matters.
>
>
> I9m using Jaguar 10.2.2 and Photoshop 7.0.1, with the extra scripting
>
> support downloaded from Adobe9s web-site.
>
> As you can see the same parameter doesn9t work on the print dialog either.
>
>
See how it goes once you have the above working.
_______________________________________________
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.