Re: Target Application
Re: Target Application
- Subject: Re: Target Application
- From: Nigel Garvey <email@hidden>
- Date: Wed, 31 Jan 2001 23:12:12 +0000
email@hidden (AppleScript) wrote on Wed, 31 Jan 2001
11:12:55 -0600:
>
I have the following simple script
>
>
tell application "Finder"
>
activate
>
select file "00001458.png" of folder "Images"
>
open selection
>
end tell
>
>
I would like to add to this script that the file "00001458.png" be opened
>
by PictureViewer instead of the Application that created it.
>
tell application "Finder"
open file "00001458.png" of folder "Images" using application file id
"ogle"
end tell
NG