![]() |
|
#1
|
|||
|
|||
One more thing, is there any way I can have the inbox and outbox text use word wrap so it does not go through the screen and become unviewable? I'm basing the model for this file off of the Duck network chat tutorial, if that makes it easier...
|
#2
|
|||
|
|||
If you want the user to choose from one of several avatars once that user chooses their avatar send that data over and then the other user can load the appropriate avatar.
There are probably a few ways to solve your second question. One easy way might be to use a timer and if the avatar has not changed position for a certain length of time change the animation This will move the text down to the next lext after if has reached 10 characters Code:
if len(draft_text) == 10: draft_text += '\n ' |
#3
|
|||
|
|||
Quote:
|
#4
|
|||
|
|||
This will add a newline for every ten characters you type. Add 11 each time because one is the newline.
Code:
if len(draft_text) in (10,21,32): draft_text += '\n' Code:
draft_text = '' |
#5
|
|||
|
|||
Quote:
Where would I find more information and options about the text like that? I've gone through the Vizard tutorials but I don't seem to remember that at all... and I don't want to have to trouble you guys every time I have a question about it ![]() |
![]() |
Thread Tools | |
Display Modes | Rate This Thread |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
3 Easy Questions | JMOwens | Vizard | 3 | 10-03-2007 12:10 PM |
networking | nickyee | Vizard | 1 | 09-18-2006 04:53 PM |
General Questions about Vizard: World Viz | dav | Vizard | 5 | 08-28-2006 03:44 PM |
active avatar functions while networking | crazyrusso | Vizard | 1 | 11-18-2004 01:08 PM |
networking | hotspur1 | Vizard | 3 | 08-25-2003 10:07 AM |