
Pros and cons for prototyping a desktop app with Tcl/Tk
Jul 16, 2009 · Tk has themed GUIs and has had them for quite a while now. It's quite easy to make a TK GUI look close to native. TK is also fairly easy on system resources (certainly faster and smaller than Winforms). The key argument for Tcl is to use it as a scripting and extension mechanism for your application.
tcl - R TCLTK not loading on windows - Stack Overflow
Dec 17, 2016 · Test the Tcl/Tk installation of R: Find and start wish85.exe which is contained in one of the sub folders of the R installation ("85" is the version number and my differ depending on your R version). An empty Tk window must pop up and a tcl/tk console must open. If not the installation is damaged or parts have been deleted (reinstall it)
python - What does calling Tk () actually do? - Stack Overflow
Jul 14, 2014 · Tkinter works by starting a tcl/tk interpreter under the covers, and then translating tkinter commands into tcl/tk commands. The main window and this interpreter are intrinsically linked, and both are required for a tkinter application to work. Creating an instance of Tk initializes this interpreter and creates the root window. If you don't ...
Tcl/Tk : Is there a way to get the list of options and commands of a ...
Aug 5, 2014 · Tcl/Tk : Is there a way to get the list of options and commands of a Tcl/Tk widget using introspection or refection from Tcl ? I was thinking at something like the Python : X.__dict__ which returns a dictionary of properties of an arbitrary object x. I tried info and winfo but it does not seem to do the trick
graphics - Python tcl is not installed properly - Stack Overflow
May 14, 2012 · There is a note at the bottom of this download page regarding Tcl/Tk on MacOS that one could interpret to mean there is room for trouble on the PC as well. ActiveState Python 2.7 includes Tcl/Tk 8.5.9, as documented here.
tcl - Tktable : could not be found in R - Stack Overflow
Dec 14, 2012 · Windows users should be aware that the Tcl extensions ‘BWidget’ and ‘Tktable’ which are included with the R for Windows installer are extensions and do need to be declared. ‘Tktable’ does ship as part of the Tcl/Tk provided on CRAN for Mac OS X, but you will need to tell your users how to make use of it:
user interface - Create new window in tcl/tk - Stack Overflow
Nov 26, 2014 · How can i create a same gui every time by clicking the button without closing current one? wm title . "abcd" wm geometry . 50x50 pack [button .b -text "new"] Please help me.
tcl - currently selected tab of ttk::notebook - Stack Overflow
Jan 4, 2014 · tcl; tk-toolkit; ttk; Share. Follow edited Jan 4, 2014 at 16:44. Donal Fellows. 138k 19 19 gold badges 160 ...
user interface - Using Tk with C - Stack Overflow
Dec 18, 2011 · From what I’ve read, my options are GTK+ and Tk. I’m working through some GTK+ tutorials, and I’ll probably stick with that, but I don’t think I’m giving Tk a fair shot. Trouble is, all the Tk documentation I can find is either for using Tk with {Tcl, Ruby, Perl, Python}, or for embedding a Tcl interpreter into the C program and using ...
tcl - Customize ttk:button - Stack Overflow
Jan 1, 2018 · Automatic assigning of commands to buttons in Tcl/Tk. 0. Creating a CAPS button on Tcl Tk. 2.