In this video I’ll show you how to create Text Widget tags to change selected text to Bold or Italics. I’ll also show you how to highlight text in the Text...
Video
In this video I’ll show you how to add images to your text widget with Tkinter and Python. We’ll also change the color highlighting of the text in the box to...
In this video I’ll show you how to open a text file and output the contents to a text widget in Tkinter. We’ll also look at saving the text from a Text...
In this video we’ll start to look at the Text Widget in Tkinter. The Text widget is actually pretty powerful and fun! It let’s you type text on multiple...
In this video we’ll look at Spin Boxes. Spin boxes are similar to combo boxes, except they don’t drop down. Instead they spin through a pre-set selection of...
In this video I’ll talk about threading. What happens when your program hangs or lags because some function is taking too long to run? Threading solves that very...
In this video I’ll show you how to add a scrollbar that scrolls your entire tkinter app. Normally scrollbars are used for listboxes, but what if you just wanted...
In this video we’ll create a volume meter image for our mp3 player that changes based on the current volume. To do this I’ve created five volume meter images...
In this video we’ll create a volume control slider for our MP3 player. We’ve used a slider once already in this project so we already know how to do it. The...
In this video we’ll finish up our music slider for our MP3 Player. We need to stop the slider from moving when someone hits the pause button, the stop button, the...
In this video we’ll continue to work on our song slider for the mp3 player with Tkinter and Python. We’ll make it so that as we drag the slider around...
In this video we’ll start to create a slider that lets us toggle thru a song that is playing and fast forward or rewind through the song. We already know how to...