In this video I’ll show you how to use Images for your Buttons and how to make rounded buttons with tKinter! I get asked all the time…how do you make rounded...
Video
In this video I’ll show you how to create many entry boxes automatically for your tkinter app. This will give you the groundwork needed to create excel like apps...
In this video we’ll learn about Tabs and Notebooks in tKinter. Notebooks allow you to give your program tabular navigation. We’ll use ttk to do this...
In this video I’ll show you how to use .config() to update just about any widget with tKinter. So often, you need to update a widget on the fly in your program...
In this video we’ll look at List Boxes in more detail. I’ll show you how to add a scrollbar to a Listbox and I’ll also show you how to select multiple...
In this video we’ll learn about List Boxes with Tkinter and Python. A list box is a box that holds a list of items. It’s a tkinter widget that can be used...
In this video we’ll build out the answer logic for our addition math flashcard app so that we can answer the flashcard and then determine whether our answer is...
In this video we’ll start to build out the Addition Math Flashcard part of our app. We’ll generate 2 random numbers, and then use those random numbers to...
In this video we’ll write the logic to determine whether we selected the correct state capital answer! We’ll need to change our radio button a bit to use a...
In this video we’ll create the radio buttons for our State Capital flashcard app. In the last video we wrote some Python code using a While loop to loop through...
In this video we’ll start working on the randomization of our State Capital Flashcard answers. We need to generate three potential “right answers” for...
In this video we’ll randomize the images after a user types in an answer. Before we had to click the “Pass” button to get a new flashcard. We’ll...