About Store Forum Documentation Contact



Post Reply 
Create chatbox
Author Message
Babulesnik Offline
Member

Post: #1
Create chatbox
How to make on the contrary? From the Textline in text.

Str text;

chat.getTextLine("chat_enter").set(text);
02-03-2011 03:01 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Create chatbox
text=chat.getTextLine(..)();
02-03-2011 09:14 PM
Find all posts by this user Quote this message in a reply
Babulesnik Offline
Member

Post: #3
RE: Create chatbox
(02-03-2011 09:14 PM)Esenthel Wrote:  text=chat.getTextLine(..)();
Thanks.

How to change font TexLine?
02-03-2011 11:12 PM
Find all posts by this user Quote this message in a reply
Babulesnik Offline
Member

Post: #4
RE: Create chatbox
The given code adds a line from below upwards. How to make on the contrary? And how to make that a text alignment was on the left edge?

if (Kb.bp(KB_ENTER))
{
text_enter=lobbi_chat.getTextLine("chat_enter")();
lobbi_chat.getText("chat_list").set(chat_text.insert(0,text_enter+"\n"));
lobbi_chat.getTextLine("chat_enter").clear();
}

How to make color sharing in line? Tried this code but it did not turn out ( deduces once
lobbi_chat.getText("chat_list").code(S+"[color=FFFFFFFF]"+nik+
"[/ color]\n");

Here that I want to make sketches:


Attached File(s) Image(s)
   
02-04-2011 11:36 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #5
RE: Create chatbox
[/ color] -> [/color]
02-05-2011 12:02 PM
Find all posts by this user Quote this message in a reply
Babulesnik Offline
Member

Post: #6
RE: Create chatbox
(02-05-2011 12:02 PM)Esenthel Wrote:  [/ color] -> [/color]
Excuse, but I have not understood. It is possible on an example?

How to make, what text displacement was on the left edge?
02-05-2011 05:47 PM
Find all posts by this user Quote this message in a reply
MikeyUchiha Offline
Member

Post: #7
RE: Create chatbox
(02-05-2011 05:47 PM)Babulesnik Wrote:  
(02-05-2011 12:02 PM)Esenthel Wrote:  [/ color] -> [/color]
Excuse, but I have not understood. It is possible on an example?

How to make, what text displacement was on the left edge?

Notice the space in the first color. Because you added that space, you're getting a result you didn't expect. smile Make sure you do /color and NOT/ color.
02-07-2011 09:32 AM
Find all posts by this user Quote this message in a reply
Babulesnik Offline
Member

Post: #8
RE: Create chatbox
(02-07-2011 09:32 AM)MikeyUchiha Wrote:  
(02-05-2011 05:47 PM)Babulesnik Wrote:  
(02-05-2011 12:02 PM)Esenthel Wrote:  [/ color] -> [/color]
Excuse, but I have not understood. It is possible on an example?

How to make, what text displacement was on the left edge?

Notice the space in the first color. Because you added that space, you're getting a result you didn't expect. smile Make sure you do /color and NOT/ color.
Please write an example, I understand very little English...
02-15-2011 04:54 PM
Find all posts by this user Quote this message in a reply
Dynad Offline
Member

Post: #9
RE: Create chatbox
Just remove the space between the / and color

There is always evil somewhere, you just have to look for it properly.
02-15-2011 04:57 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Babulesnik Offline
Member

Post: #10
RE: Create chatbox
With what objects Esenthel can create a chat room? I tried to use Text, but collided with a small number of methods in this object ...

Please help who knows or has already created a chat room.


Attached File(s) Image(s)
   
02-15-2011 05:17 PM
Find all posts by this user Quote this message in a reply
Post Reply