Re: What is wrong with my script
Re: What is wrong with my script
- Subject: Re: What is wrong with my script
- From: Jay Louvion <email@hidden>
- Date: Fri, 11 Sep 2009 21:00:35 +0200
- Thread-topic: What is wrong with my script
Title: Re: What is wrong with my script
On 11.09.2009 20:53, "xorx" <email@hidden> spake thus:
Running the following script in AppleScript editor creates error -1728:
--start
set AS_path to POSIX file "/Applications/"
tell application "Finder"
set dat to modification date of AS_path
end tell
--end
It says that "modification date of file "/Applications/"" could not be
read. This error happens with all possible properties of file objects.
The file obviously exists and I have no clue why this does not work...
Thanks for any help,
Georg
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden
Why are you referring to a folder using “file” ?
I’d use this:
set AS_path to path to applications folder
tell application "Finder" to set dat to modification date of AS_path
Best,
j.
Jay Louvion
Studio Casagrande
3, rue Müller-Brun
1208 Geneva
T+4122 840 3272
F+4122 840 3271
www.studiocasagrande.com
P Please consider the environment before printing this email.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden