On 24/6/04 10:58 am, "Alex da Franca" <[EMAIL PROTECTED]> wrote:
> for chats (-> exchanging text between
> platforms) I usually simply convert to html and
> send the html instead of text.
Hi Alex,
Even for chat, that seems very inefficient to me. You end up sending a much
larger string than is necessary. Here's an example where 7 characters get
converted to 141:
put member("input").text
-- "d�j� vu"
put member("input").html
-- "<html>
<head>
<title>Untitled</title>
</head>
<body bgcolor="#DDDDDD">
<font face="Arial" size=2>déjà vu</font></body>
</html>
That means using 20 times the bandwidth.
Cheers,
James
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL
PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping
with programming Lingo. Thanks!]