Re: URL Access Scripting
Re: URL Access Scripting
- Subject: Re: URL Access Scripting
- From: Michael Turner <email@hidden>
- Date: Mon, 10 Dec 2001 14:41:53 -0500
I get the error message "-30785: Extension failure"
from the following script, when I drop an item on it.
MacErrors comes up blank on this one.
I recently upgraded to OS X, I suspect it has something to do with that.
(Script was written after upgrade, and has never worked.)
Any suggestions welcome, & thanks.
/Michael
on open docList
repeat with nextDoc in docList
tell application "URL Access Scripting"
try
set bool to (upload nextDoc to
"
ftp://link1.link-systems.com/~mturner" with authentication)
on error ermesg number errnum
if errnum is not -128 then
display dialog (errnum as text) & ": "
& ermesg & return & return & "Applet quit."
return
end if
end try
end tell
end repeat
end open