-- example to mount idisk over tcp/ip
tell application "Finder"
try
with timeout of 120 seconds
mount volume "afp://" & theUser & ":" & thePassword &
"@iDisk.Mac.com/" & theUser
end timeout
on error errMsg number errNum
error errMsg
end try
end tell
-- hcir
'm trying to write a MacPerl script that mounts a remote File Shared
> volume via TCP/IP, via AppleScript among other things. I've found the
> AppleScript code required to mount via AppleTalk, but does anyone know
> how you connect via TCP/IP?
>
> Sorry about being off topic, but this is kind of important.