View Single Post
  #4  
Old 05-05-2009, 02:07 PM
TrashcanPatrol TrashcanPatrol is offline
Member
 
Join Date: Aug 2008
Posts: 43
Quote:
Originally Posted by Jeff View Post
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 '
This does work, but it moves the text down only once- if you type a long message, it will push it down once but the next time you reach the 10th character it lets it go... is there anything I can do to fix that?
Reply With Quote