View Single Post
  #3  
Old 04-03-2009, 01:40 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
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 '
Reply With Quote