Re: dropStuff
Re: dropStuff
- Subject: Re: dropStuff
- From: Nigel Garvey <email@hidden>
- Date: Fri, 17 Oct 2003 01:06:09 +0100
email@hidden wrote on Thu, 16 Oct 2003 13:39:11 -0700:
>
Hi Group,
>
>
I made this Simple AS to stuff files that I chose automagically. I'd like
>
to be
>
able to stuff multiple
>
files at a time. My problem was figuring out how to give DropStuff a
>
multiple
>
file alias -- if that
>
exists. Basically I just want to put multiple files in the same stuffit
>
directory. It can't be that
>
hard, would anyone share with me what I'm missing?
DropStuff isn't scriptable. :-) However, this seems to work in OS X:
tell application "System Events"
set alreadyRunning to (process "DropStuff" exists)
end tell
set file_to_be_stuffed to (choose file)
set other_file_to_be_stuffed to (choose file)
tell application "DropStuff"
open {file_to_be_stuffed, other_file_to_be_stuffed}
if not alreadyRunning then quit
end tell
Items are stuffed according to DropStuff's preferences and the archive is
saved in the same folder as the first item in the list.
NG
_______________________________________________
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.