Re: URL Access Scripting
Re: URL Access Scripting
- Subject: Re: URL Access Scripting
- From: JollyRoger <email@hidden>
- Date: Fri, 07 Dec 2001 17:15:48 -0600
On 12/7/2001 1:02 PM, "Eric Schult" <email@hidden> wrote:
>
I'm writing a little script using the URL Access Scripting OSAX that'll
>
allow users to upload a file to an anonymous FTP site.
Also you may want to consider making your script a droplet so that you can
just drop files onto the script to upload them. Just add an "on open"
handler to your script, and save it as an application.
on open docList
repeat with nextDoc in docList
-- upload here
end repeat
end open