Re: combining open and run handlers
Re: combining open and run handlers
- Subject: Re: combining open and run handlers
- From: Michelle Steiner <email@hidden>
- Date: Thu, 1 Apr 2004 16:53:16 -0700
On Apr 1, 2004, at 4:04 PM, Rick Davis wrote:
I think this is probably a simple question, but I can't seem to find
the answer on my own. Can I combine run and open handlers? In other
words can I make a simple application that will do one thing if a file
is dropped onto it using an on open handler and also allow a choose
file dialog to be produced if the application is double-clicked using
an on run handler? Then perform the same task as the droplet after a
file has been chosen?
Absolutely; you don't even need an explicit run handler. For example:
set file_list to choose file with multiple selections allowed
my subroutine(file_list)
on open (file_list)
my subroutine(file_list)
end open
on subroutine(the_files)
repeat with this_item in the_files
display dialog (name of (info for this_item))
end repeat
end subroutine
-- Michelle
--
My body is not a democracy: you don't get a vote.
_______________________________________________
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.