Re: Creeping-featuritis
Re: Creeping-featuritis
- Subject: Re: Creeping-featuritis
- From: "Steven D. Majewski" <email@hidden>
- Date: Tue, 17 Apr 2007 12:51:42 -0400
On Apr 17, 2007, at 12:25 PM, Mark J. Reed wrote:
Uhm, yeah. I think I'd go with two different droplets instead. :)
Another way is to move the dialog into a separate run handler:
Double clicking on the droplet calls the run handler, which sets a
property for the default format.
Dropping a file calls the open handler, which sets the clipboard
according to the default format property.
-- Steve.
On 4/17/07, Michelle Steiner <email@hidden> wrote:
The goal was to get the pathname of a file or folder onto the
clipboard.
The solution was simple:
on open {dropped_item}
tell application "Finder" to set the clipboard to the
dropped_item as text
end open
The solution, after creeping-featuritis:
property Default_button : "Macintosh format"
on open {dropped_item}
set the display_format to button returned of (display dialog
"Which format
do you want the file path in?" with title "Choose display format"
buttons
{"Cancel", "Unix format", "Macintosh format"} default button
Default_button)
set the Default_button to the display_format
if the display_format is "Unix format" then set the dropped_item
to the
POSIX path of the dropped_item
tell application "Finder" to set the clipboard to the
dropped_item as text
end open
--
"I'll do the best I can do because that's the best I can do!"
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list
(email@hidden)
Help/Unsubscribe/Update your Subscription:
40mail.com
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
--
Mark J. Reed <email@hidden>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (applescript-
email@hidden)
Help/Unsubscribe/Update your Subscription:
40virginia.edu
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden