I'm sorry for not answering, I missed this topic because I didn't get a mail for it. The forum apparently doesn't send multiple mails when multiple topics are created in the same category (so I only saw the other topic that was posted that night), and since the topic was still unread it didn't send a mail on your second post either. (edit: there is an account setting for this apparently, I've changed it so this won't happen again to me)
There is no option to auto-scroll currently, but it can be done manually. Every time you add a line you can call "listBox->setSelectedItemByIndex(listBox->getItemCount() - 1)" then the scrollbar should move to the end. If the line shouldn't be selected then you could call listBox->deselectItem() right after it.
But I'll add a setAutoScroll function in v0.7-alpha2, I'll probably even make it scroll by default so that you don't even have to call anything.
There is no option to auto-scroll currently, but it can be done manually. Every time you add a line you can call "listBox->setSelectedItemByIndex(listBox->getItemCount() - 1)" then the scrollbar should move to the end. If the line shouldn't be selected then you could call listBox->deselectItem() right after it.
But I'll add a setAutoScroll function in v0.7-alpha2, I'll probably even make it scroll by default so that you don't even have to call anything.

)