Re: Thanx A Bunch...
Re: Thanx A Bunch...
- Subject: Re: Thanx A Bunch...
- From: AppleScript Guru <email@hidden>
- Date: Sat, 13 Oct 2001 00:56:45 -0400
Kevin,
on 10/12/01 5:49 PM, you said:
>
Here is my current status...
>
>
Following Mr. Goodman's advice I'm at this point...
>
>
property search_folder : "Kevin's Drive : apple menu items : recent
>
documents"
>
property destfolder : "Kevin's Drive : work related doc's"
>
set itemlist to items of search_folder
>
repeat with aFile in itemlist
>
tell application "Finder" to copy aFile to destfolder
>
end repeat
>
However this returns a "results dialog box" with all the words in quotes
>
broken down into individual words... This looks like it might work, but it
>
isn't...
---> Try this:
property searchFolder : "Kevin's Drive : apple menu items : recent
documents"
property destfolder : "Kevin's Drive : work related doc's"
tell application "Finder"
set itemlist to items of folder searchFolder
repeat with a from 1 to count itemlist
copy (item a of itemlist) to folder destfolder
end repeat
end tell
-Ben
Benjamin S. Waldie
Write Track Media
(AppleScript GuRu)
AppleScript Web Site:
http://www.AppleScriptGuru.com
http://www.wtmedia.com