In this video we’ll set the menu Undo and Redo functions, and also build out a horizontal scrollbar.
Setting up Undo and Redo with a Tkinter text widget is actually very very easy! All we have to do is give our menu commands:
command=my_text.edit_undo
command=my_text.edit_redo
We’ll also set up a horizontal scrollbar for our text widget. We’ve already got a vertical one, but now we want one that goes horizontally. It’s pretty easy to do as we’ll see in this video!
Add comment