Python Tkinter Text-Widget scroll to specific line Python Tkinter Text-Widget scroll to specific line tkinter tkinter

Python Tkinter Text-Widget scroll to specific line


>>> 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')