This 780 paper page faces. more info at:
https://www.torontopubliclibrary.ca/detail.jsp?Entt=RDM2538548&R=2538548
Titled: "Tcl and the Tk toolkit", is pretty definitive.
I say:
Struggling to keep a TKINTER project all single threaded for really abstract work, in probably impossible.
Its *not* super hard to reach around it some .. into real TCL. but not to be trivialised, either.
Of course, only piss-ants use MS for anything involving development. Its nearly impossible to do serious work in MS really. Making the required final target system(s) for final projects in: linux, apple and MS, is pretty distracting, difficult, and
annoying. It's possible, though
If you like piss and ants everyday instead of completing tasks, those are the two main ingredients to fuel the existence of Microsoft.
in Ubuntu this makes the screen shot attached:
Here's the program to run TCL directly with this one file test program:
tclsh npa-1029.tcl
And Here's the program:
---------------------------------------------------
package require Tk 8.0
wm title . "TKinter is made from TCL"
wm geometry . 450x350
pack [ button .b -text "click me" -command makeWindow ]
set counter 0
proc makeWindow {} {
# Make a unique widget name
global counter
set w .gui[ incr counter ]
# Make the toplevel
toplevel $w
wm title $w "Pretty easy"
# Put a window in it
pack [ label $w.xmpl -text "Good luck with your projects !" ]
pack [ button $w.ok -text OK -command [ list destroy $w ] ] --------------------------------------------
I hope this adds some mini fact set to: "How's this really work, anyway ?"
Every super graphics, talks tand listens, etc full motion app released in linux is X11. This is way beyond TKINTER. Though TKINTER is a fine, fine thing, its not the whole thing.
If you decide this matters to you, TKINTER with bonused up X11 support around it, matters to me. Tell me what you need, maybe we can find some common sharable work. Python <-> TCL <-> X11 obviously.
Try the above and feel liberated. Probably possible in MS by applying some handful of hours, in linux, its 45 seconds to do it. Who knows what mysteries live iunder the porch at Apple-landers.
Regards,
Daniel B. Kolis / 03 Jun 2023
--- SoupGate-Win32 v1.05
* Origin: fsxNet Usenet Gateway (21:1/5)