View Single Post
  #6  
Old 05-07-2009, 01:46 PM
TrashcanPatrol TrashcanPatrol is offline
Member
 
Join Date: Aug 2008
Posts: 43
Quote:
Originally Posted by Jeff View Post
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
That does work, thanks.
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
Reply With Quote