Re: Error code
Re: Error code
- Subject: Re: Error code
- From: Mr Tea <email@hidden>
- Date: Wed, 20 Mar 2002 17:51:44 +0000
This from Ian Mantripp
>
Does anybody know off hand what a -1728 error is and what could be causing
>
it ?
The ASLG 'translation' is "Can't get <reference>". Most likely reason for
a script to suddenly start displaying this error is that an item referred
to in the script has been moved, deleted, or renamed. I generally see
this error unhelpfully displayed in one of those little yellow system
notification dialogs when a folder action goes awry.
Wrapping the script in a try block will at least let you find out which
reference the script can't get.
try
--<script goes here>
on error errmsg
display dialog errmsg
end try
Note - if the script is a folder action
--
"Always remember to warm the pot."
_______________________________________________
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.
References: | |
| >Error code (From: Ian Mantripp <email@hidden>) |