home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-09-21 | 852 b | 21 lines | [TEXT/ToyS] |
- -- Change these to specify your prefered Umich & Info-Mac FTP sites.
- -- Don't use the home sites, as they are already overloaded.
- set umichaddr to "archie.au:/micros/mac/umich/"
- set infomacaddr to "archie.au:/micros/mac/info-mac/"
-
- set theurl to the clipboard
- if (theurl contains " /info-mac") and (theurl contains ";") then
- copy ((characters (offset of "/info-mac" in theurl) thru ┬
- ((offset of ";" in theurl) - 1) of theurl) as string) to theurl
- end if
- if (theurl does not contain ":") and (theurl starts with "/mac/") then
- copy umichaddr & text from character 6 of theurl to end of theurl to theurl
- end if
- if (theurl does not contain ":") and (theurl starts with "/info-mac/") then
- copy infomacaddr & text from character 11 of theurl to end of theurl to theurl
- end if
- tell application "Anarchie"
- activate
- list url theurl with window
- end tell
-