Re: dropStuff
Re: dropStuff
- Subject: Re: dropStuff
- From: Mr Tea <email@hidden>
- Date: Fri, 17 Oct 2003 14:35:34 +0100
This from Mr Tea - dated 17/10/03 1:59 pm:
>
This from email@hidden - dated 16/10/03 9:39 pm:
>
>
> 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.
>
>
>
If the items to be stuffed are all in the same folder, you could 'choose
>
folder' then 'list folder' with multiple selections allowed
Like this...
--======================================
choose folder returning fldr
list folder fldr without invisibles returning aList
choose from list aList with multiple selections allowed returning bList
set cList to {}
repeat with i from 1 to count of bList
set end of cList to ("" & fldr & item i of bList) as alias
end repeat
set mydesktop to path to desktop from user domain as alias
tell application "DropStuff"
stuff cList with format StuffIt5 into mydesktop
quit
end tell
--======================================
To answer your original question, Brandon, the way to give DropStuff a
'multiple file alias' is to put the aliases in a list...
eg {alias "HD:Folder:File 1", alias "HD:Folder:File 2"}
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.