Still not working for me I'm afraid. FTP is turned on. I also have the firewall on. Do I have to specify a port? Is it because the file I want is rtf? Do I have to invoke some sort of library in Rev?

on mouseUp
get url ("ftp://me:[EMAIL PROTECTED]/users/me/Documents/Miscellaneous/Envelope Template.rtf")
put it into fld "x"
end mouseUp



Gregory

On Sep 15, 2004, at 4:09 PM, [EMAIL PROTECTED] wrote:

Do you have ftp services enabled on the Macs?  You can do this from the
"Sharing" pane in "System Preferences".
Please excuse this simple question if you've already done this. :-)

This worked for me:

on mouseUp
  put "whateverName" into userName
  put "whateverPassword" into password
  put "123.45.67.89" into ipaddress
  get URL ("ftp://"; & userName & ":" & password & "@" & ipaddress &
"/data.txt")
  put it into fld "x"
end mouseUp

Hope this helps...James
_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to