In this video I’ll show you how to create the input box so that we can type in our flashcard answer. We’ll also work on the logic to determine whether or not...
Video
In this video we’ll place our state images on the screen, and set up a randomization sequence that flashes a random state up onto the screen every time the program...
In this video we’ll start to build a fun little geography flashcard app with tKinter and Python. We’ll start out with a state geography flashcard...
How to use Unicode Characters and Special Characters with tKinter and Python. Using special characters in tKinter is super easy. You just slap a u in front of the thing...
In this video I’ll show you how to automatically delete all the widgets inside a frame. So you’ve got a frame, and it has a bunch of widgets in it (buttons...
In this video I’ll show you how to use the tkinter color picker, or color chooser as it’s actually called, to pick colors for your tkinter app. Need to use...
In this video I’ll show you how to create resizeable paned windows with tkinter and python. Paned windows allow you to create panels in your gui app that can be...
In this video I’ll show you how to use frames with menu bars in tKinter. In the last video we created a menu bar…but when you click on the menu items...
In this video I’ll show you how to create Menu bars at the top of your tKinter programs. Menus in tKinter are incredibly easy. You just define them, configure...
In this video I’ll show you how to bind drop down menus (OptionMenus) and Combo Boxes with tKinter and Python so that you don’t have to click a button to...
In this video I’ll show you how to do keyboard event binding with tKinter. Up until not we’ve run functions by passing a command to a button, but...
In this video I’ll start to teach you about Classes with tKinter. Classes are a more intermediate to advanced topic in programming, but using classes with tKinter...