Re: can't get it to work
Re: can't get it to work
- Subject: Re: can't get it to work
- From: Deivy Petrescu <email@hidden>
- Date: Tue, 8 Apr 2003 18:54:57 -0400
On Tuesday, April 8, 2003, at 07:48 AM, Robert Cerny wrote:
Hi folks,
this little snippet is driving me nuts! Could anyone help?
Thanks
Robert
tell application "Finder"
set theResult to POSIX path of "/Users/rcerny/Desktop/In"
activate
move selection to theResult
end tell
you should avoid "selection".
Try this:
set theResult to (path to desktop as string) & "In:"
tell app "Finder" to move selection to alias theResult
Regards
Deivy Petrescu
http://www.dicas.com/
_______________________________________________
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.