hey i use canvas and image in it to output text for the user (since appuifw.Text is editable.
i want to do if the text reach the end of the screen to delete old lines from the top and move up everything then i can put more text on the screen.
i use something like:
def msg(text):
global textloc
textloc=(textloc[0],textloc[1]+15)
image.text(textloc,unicode(text), (0,0,0), (u'Series 60 J', None))
canvas.blit(image)
to output my text.
any hints how to do what i want ?

Reply With Quote


