I am writing a simple menu-based RPG (combat is turn-based and such), but I have realized I had better organize all of my widgets before I actually start implementing the GUI. My application "changes windows" by lifting frames containing widgets or other frames (or both). Is there a commonly-used or suggested method or organization program to help me keep track of everything neatly before I start?
Thanks.
If you want to say do health as a number like 0/1 then you could do this line of code for a label.
that would assign variables to your label for may health and current health and display it on the left of your screen. Also it will have a green background ofr the label but that can be changed. Really that is basic gui in a tkinter application hope this helped.