Tagged Questions

The Tk toolkit is a scripted GUI toolkit that is designed to be used from dynamic languages (initially Tcl, but also Perl and Python).

learn more… | top users | synonyms

12
votes
3answers
1k views

The Simplest Steps to Converting TCL TK to a Stand Alone Application

After running into major compatitiblity problems with C#, ASP.NET, MS Access, Linux, and Mono, I've decided to program in a language that is cross-platform, open source, and compatible with embedded ...
11
votes
5answers
1k views

is Tkinter worth learning?

I generally make my desktop interfaces with Qt, but some recent TK screenshots convince me Tk isn't just ugly motif any more. Additionally Tkinter comes bundled with Python, which makes distribution ...
10
votes
11answers
10k views

How to do GUI for bash scripts?

I want to make some graphical dialogs for my script but don't know how. I hear something about GTK-Server or something like that. If someone knows how to link Bash with tcl/tk I also be satisfied. ...
10
votes
7answers
6k views

Why are Tk GUI's considered ugly?

Tk GUI's seem to be universally considered ugly, but I'd like to know why specifically. Some in the Tcl/Tk world would argue that this is a moot point as there is much better support now for native ...
9
votes
11answers
2k views

Hidden Features of TCL/TK

I've been working with TCL/TK ,recently started to use TCL/TK with my automation applications and I'm hungry for knowledge. To continue with the long line of Hidden Feature questions, I would like to ...
7
votes
2answers
119 views

Does Ruby offer a mechanism for responding to Apple Events on OS X?

I'm working on a desktop application for OS X using Ruby-Tk, and I would like to provide an Apple Events interface for the application. This means that the application would define a dictionary of ...
7
votes
5answers
1k views

How can I enhance the look of the Perl/TK GUI under Perl 5.004?

I have an application that is built to work on Windows, Linux, and Solaris that uses the Perl/TK GUI. Due to constraints, we are limited to Perl/TK only. Moreover, we are limited to an old Perl/Tk ...
7
votes
4answers
3k views

Tcl/Tk examples?

Tcl/Tk is a simple way to script small GUIs. Can anyone give a nice example with a button and a text widget. When the button is pressed should a shell command be executed and the output piped to the ...
6
votes
3answers
490 views

Creating Ruby applications for Windows

I want to develop a Windows application. Honestly I care little about cross-platforms for now (but still would be good) I want to use Ruby, since it has quite a simple syntax and is so.. well, simple ...
6
votes
2answers
555 views

Book Recommendations To Learn Tcl/Tk

I'm now in love with Tcl/Tk because of the flexibility and easy way to do the things, but I like to learn by books, then I want some book recommendation to learn.
6
votes
8answers
657 views

Create a Fully Featured Environment For Tcl/Tk Development Under Windows

I'm now learning Tcl/Tk, but as I'm running Windows, I want to create a fully featured(professional) development environment for this language, but I need to know: Which tools I need to ...
6
votes
2answers
3k views

Should I use Perl/Tk, Tcl::Tk or Tkx for a Perl GUI?

I really like Perl/Tk, but have come to the opinion that it's DOA. I think Tcl::Tk and Tkx are better solutions. Assume I drop Perl/Tk. Is the "most supported" route to go with Tcl::Tk (which hasn't ...
5
votes
4answers
165 views

Python subprocess killing

I have problem killing sub processes. The following piece of code is used for creating the sub process- while(not myQueue.empty()): p=Popen(myQueue.get(),shell=True,stdin=PIPE,stderr=PIPE) ...
5
votes
2answers
1k views

Trying to install MinGW and Tk for Perl on Windows 7

So... I have been trying to get this working for several weeks now. I can install MinGW through the .exe, but no-matter what I do I can't seem to get make support or ppm install MinGW to work in such ...
5
votes
1answer
440 views

Steps to Create A Tcl Starkit on a Windows Platform

I am trying to figure out the basic steps to creating a Tcl starkit in Windows. I've asked a similar question before, as well as purchased a book on Tcl programming, visited wiki.tcl.tk, emailed Tcl ...
4
votes
3answers
135 views

Is there anyway to hook up Python/Tkinter to an already running Tcl/Tk app?

I work a lot on Pure Data, an app written in Tcl/Tk and C. I'd like to be able to make a python API for plugins for modifying the Tcl/Tk GUI. To do this, it seems that I would need to be able to ...
4
votes
1answer
93 views

How do I best handle a needed patch for Perl/Tk?

I am making a change to Perl/Tk for an application that has its own resident Perl and modules installation (so we can drop the app in and go). I've found a problem I am experiencing that I just ...
4
votes
3answers
468 views

How do pass arguments to subroutines in Perl/Tk?

I have designed one sign-up form,in this form after getting all necessary values I will click submit button. And while clicking that submit button I want to call one function and I want to pass the ...
4
votes
2answers
664 views

Force upper case input in Tcl/Tk entry field

I've got a Tcl/Tk window with an entry box in which I'd like to force upper case character entry. That is, if any letters are typed I'd like them to appear in upper case in the entry field, instead of ...
4
votes
2answers
848 views

How do I display an image with ltk?

I have written code to read a windows bitmap and would now like to display it with ltk. How can I construct an appropriate object? Is there such functionality in ltk? If not how can I do it directly ...
3
votes
3answers
87 views

Using Tk with C

I’m a C programmer with no desire to deal with C++ tool-kits, and I’m trying to build a simple graphical card game. I’m programming under Linux, but I’d like to have the option of a Windows port. ...
3
votes
3answers
96 views

Popup Dialog in Tkinter/Python

I need to add a popup dialog box on my GUI. So, when ever I hover my mouse over a label, it should be able to show a popup( Like the type we get while hovering over a file in windows). It should also ...
3
votes
1answer
60 views

How to bind the '+' and '-' keys is Tcl/Tk

How can I bind the + and - keys to commands in Tcl/Tk?
3
votes
2answers
137 views

In tcl/tk child window, I can't set a default value for my entry widget

I'm a complete beginner in the tcl/tk world, but I've tried to research this one on my own, and keep coming up empty. I'm extending with a tcl/tk app that allows me to add code to spawn a child ...
3
votes
2answers
91 views

Is there an easy way to enable Tk for Ruby in OS X v10.6+?

Starting with Snow Leopard (OS X v10.6) Apple bundles 64-bit ruby by default. Unfortunately, there is no 64-bit Tk bundled, so the following ruby code will fail: require 'tk' Is it some easy way to ...
3
votes
1answer
125 views

How to catch the maximize signal in Tk?

You can bind a command with the X button of the window by this: wm protocol $windowPath WM_DELETE_WINDOW $command How can I do the same for the maximize button of the window?
3
votes
1answer
895 views

Python tk scroll frame?

I'm creating a simple GUI app using Tkinter with Python, but I'm having problems adding a scrollbar to a single frame. The frame is visible from top to bottom on my 20" but in order to display ...
3
votes
2answers
198 views

What is a good way to show different content dynamically (in Tcl/Tk)?

I have a set of radiobuttons (say, with choices 1 and 2) and need to show some widget based off of the user's choice. For example, if they chose 1, I would show them a labelframe with several ...
3
votes
0answers
133 views

How to use option key combinations in a text widget

On a Mac I can get an a-grave character by typing Option+` followed by a - voilà ! When using a text widget however, the Option+` combination causes wish to quit unexpectedly. Is there a way to get ...
3
votes
2answers
775 views

Why are all the tk examples in a Python distribution written in TCL?

Now don't get me wrong, I'm not exactly a Python fan, but when you see a Tk directory inside of the python directory you kinda expect... Well Python. And yeah, I get that Tk came from TCL, but if I ...
3
votes
1answer
135 views

What do the various Tk cursors mean?

My Google-fu is failing me. Please, consider the following: http://tcl.activestate.com:8000/man/tcl8.4/TkCmd/cursors.htm Some of the cursors I understand easily enough, "watch" tells the user to ...
3
votes
4answers
722 views

Pros and cons for prototyping a desktop app with Tcl/Tk

I've begun prototyping a desktop app with Tcl and intend to present the idea to some venture capitalists. Neither desktop apps nor Tcl are in vogue and so I want to be prepared to counter any ...
3
votes
2answers
3k views

Removing the TK icon on Python Tkinter windows

Does anybody know how to make the icon not show up? I'm looking for a way to have no icon at all. (Not a replacement)
3
votes
1answer
224 views

How to know whether a window with a given title is already open in Tk?

I’ve writen a little python script that just pops up a message box containing the text passed on the command line. I want to pop it up only when the window —resulting from a previous call— is not ...
2
votes
2answers
81 views

expect script + how to ignore strings if not apears

I write the following expect script in order to automate ssh login to remote Linux machine And run the command "cat /etc/APP_VERSION.txt file" Sometime I not asked from ssh command about- "Are ...
2
votes
1answer
41 views

Python Tk - Dynamically change button, defined in function, on click

I am new to making GUIs with Python and what I am trying to do should be pretty simple. Essentially, I have a dialog class that I use to instantiate a dialog in my program. One of the things on this ...
2
votes
1answer
82 views

Python TK with MVC pattern

I need a basic example where MVC pattern is used with Python TK. I have made a Python TK code , however I would like to transform it into an MVC pattern.
2
votes
1answer
135 views

Ruby, deploying an exe with ocra that contains the TK GUI

Ocra is unable to handle applications that require 'tk' require 'tk' puts 'nope' Packing this code with ocra http://github.com/larsch/ocra doesn't work (like mentioned in one of the issues at the ...
2
votes
2answers
31 views

tk eventspending?

How do you refresh the tk gui while doing some computation inside of a button call back routine? The routine takes a long time, and the user wants to see some progress. Need some way to repaint ...
2
votes
2answers
36 views

return list of arrays

where is the difference in TCL TK with list and array ? I created a list of 3 arrays. like this one in a loop set x($idx) 1 incr idx and later i want to return the "ret" object list set ret { $x ...
2
votes
2answers
124 views

How do you spawn application from tcl/tk such that it's independant of the parent app?

I've tried just about EVERYTHING. I've tried exec. I've tried open with a pipe. I've tried expect's spawn command. I've even tried creating scripts that launch the application. None of this works. It ...
2
votes
2answers
92 views

Change the behavior of the “-browsecmd” callback from Tk::Tree

my problem is that the subroutine from "-browsecmd" is called twice, when a user clicks on an entry. It activates when the left mouse button is pressed and when it is released. Is it possible to tell ...
2
votes
2answers
336 views

Tcl/Tk - how to get the prompt after executing an command using eval?

The code to reproduce my problem is given below. I named the file as test.tcl #------------------------------------------------------------------- # test.tcl ...
2
votes
2answers
243 views

Python version and Tcl/Tk compatibility

I have installed Tcl and Tk, and I am running into the oh-so-familiar "No module named _tkinter" error. My 'python' Bash command runs Python version 2.4.2, but Synaptic says I have 2.6.6 installed. I ...
2
votes
1answer
232 views

Ruby TK library not found

I am trying to run a simple ruby program on windows platform using 'tk' library but when I run the program I am getting following error: `require': no such file to load -- tk (LoadError) I checked ...
2
votes
1answer
179 views

Invoking “package require Tk” in Tcl without writing it in every .tcl files

I am learning Tcl/Tk, and I have been following a tutorial to a point that I am moving to Tk. All the files in the tutorial use Tk commands (such as "button") right away, without having "package ...
2
votes
1answer
195 views

How do I set values to a Tk combobox in R

I sometimes have a dropdown box with only one item to choose from, but this item might be a string with spaces. How can I do this in R? Here is the problem: library(tcltk2) root<-tktoplevel() v ...
2
votes
3answers
108 views

why is wish opening two windows instead of one?

In Tcl/Tk, the source of file /usr/bin/wan27 #! /usr/bin/wish -f set w .main toplevel $w wm title $w "FOO" when issuing the command "wan27" from terminal (Linux/Debian/Ubuntu 10.04), it opens two ...
2
votes
3answers
250 views

tcl/tk button or toplevel pathname conventions

When one creates a new toplevel or button in TK, one needs to enter a pathname. I have seen a basic code which looks like: toplevel .a ... button .a.b ... My question is: Are the dots treated ...
2
votes
2answers
246 views

How do I enable a disabled context menu item when selection happens in a Perl Tk gui?

For example in the following script: use Tk; my $mw = new MainWindow; my $t = $mw->Scrolled("Text")->pack; my $popup = $mw->Menu( -menuitems => [ [ Button ...

1 2 3 4 5