Re: newbie question on simple finder actions
Re: newbie question on simple finder actions
- Subject: Re: newbie question on simple finder actions
- From: John Delacour <email@hidden>
- Date: Tue, 22 Apr 2003 00:33:48 +0100
- Mac-eudora-version: 6.0a16
At 4:30 pm -0400 21/4/03, Daniel E. Bunker wrote:
the script I am working with is:
on adding folder items to this_folder after receiving these_items
tell application "Finder"
make new alias to these_items
move these_items to folder "Macintosh
HD:Users:ecolabg4:Documents:journal articles:raw refs:"
end tell
end adding folder items to
But, it make the alias on the desktop (I have yet to get it to make
it in this_folder), and the move does not work.
All you would need to do it this, but DON'T DO IT !!
on adding folder items to me_ after receiving them_
tell application "Finder"
make new alias to them_ at me_
move them_ to desktop
end tell
end adding folder items to
I'll leave you to work out why.
JD
_______________________________________________
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.