PyGUI - trying to get scrolling to work in a TextField Object

268 Views Asked by At

PyGUI: I'm defining a text field to display text from an input source in the usual way:

win.status_field = TextField(position = (550, 120), 
    width = 200, text = create_processing_text(),
    multiline = True, lines = 30)

This works fine, but when there is too much text I'd like to be able to scroll around or at least word wrap, but I do not see how that is exactly done from interrogating the docs.

Is it just that PyGUI isn't mature enough to do that, and it's time to graduate into PyQT or some other framework? I hate to think of it that way but I don't see any option to accomplish this simple task.

Is there some way to do this which I am overlooking?

0

There are 0 best solutions below