View Single Post
  #5  
Old 05-06-2009, 02:07 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
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'
change the draft_text variable to be an empty string
Code:
draft_text = ''
when it's created and everything should line up
Reply With Quote