How to scroll Tix ScrolledWindow

Using Python, how can I programmatically scroll (without using the scroll bars) a window in a Tix ScrolledWindow? The usual way would be to call xview / yview, but these calls do not seem to be available. Googling suggests that this is not possible at all, but I hope for something better.

+4
source share
1 answer
st = tix.ScrolledText(parent) st.text.see('end') 
0
source

All Articles