Re: Open URL in Netscape?
Re: Open URL in Netscape?
- Subject: Re: Open URL in Netscape?
- From: JJ <email@hidden>
- Date: Thu, 13 Dec 2001 23:40:13 +0100
>
on open dropped
>
tell application "Finder"
>
open file "Apple:Applications:Netscape Folder:Netscape 6"
>
tell application "Netscape 6"
>
GetURL dropped
>
end tell
>
end tell
>
end open
"dropped" is a file specification, not the URL clipping' contents. Try this:
on open dropped
tell app "Finder" to open dropped using application file id "MOSS"
-- "MOSS" is Netscape's creator type
end open
Good luck!
JJ