Thanks Scott:

> 
> Most likely what you need to do is replace "crlf" with "cr".
> If the file was originally a Mac file and wasn't translated by the
> HTTP server (or the program you used to put the file up on the
> server), you may need to replace "numToChar(13)" with
> "numToChar(10)".

Ha! "too easy." This worked fine:

on mouseUp
  put URL (field "tURLtoDownLoad") into tData
  replace numToChar(13) with numToChar(10) in tData
  put the result into it
  answer it
  put tData into fld tText
end mouseUp

Thanks
Sivakatirswami





Archives: http://www.mail-archive.com/metacard%40lists.best.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.

Reply via email to