Issue:
So far I could not find any way to scroll to a specific line in a Tkinter text-widget. Since Tkinter always uses the line/column (e.g. "1.0") notation to identify positions in the text-widget, isn't there a way to directly scroll to a given position?
So far I tried setting the yview directly:
textWidget.yview("scroll", scrollamount, "units")
But that seems very unclean to me to use the "units" here...
Looking for a clean solution. Thanks.
>>> help(Tkinter.Text.see)
Help on method see in module Tkinter:
see(self, index) unbound Tkinter.Text method
Scroll such that the character at INDEX is visible.
To make sure line 3 is visible do:
textWidget.see('3.0')