Re: Path to reference (repost)
Re: Path to reference (repost)
- Subject: Re: Path to reference (repost)
- From: Mr Tea <email@hidden>
- Date: Thu, 03 Apr 2003 09:35:56 +0100
This from Dave Groover - dated 2/4/03 4:20 pm:
>
Why doesn't "Paste Reference" work under OS X?
Because it doesn't, is the official answer. It's gone completely in the
Script Editor 2 beta.
Make youself a droplet instead, or a contextual menu script if you have the
free BIG CAT cm extension. The following script, which lives in my
contextual menu, gets the path to the selected item, wraps it in quotes and
puts it on the clipboard...
on main(fileList)
set theFile to item 1 of fileList
set the clipboard to "\"" & (theFile as string) & "\""
end main
To make that into a droplet, change the opening line to 'on open fileList'
Nick
pp Mr Tea
--
_______________________________________________
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.