The Tk toolkit is a scripted GUI toolkit that is designed to be used from dynamic languages (initially Tcl, but also Perl and Python).
0
votes
3answers
44 views
Tkinter: String variables not working [closed]
I have made a program for science which asks you a symbol of n element and you must type in the element but the problem is that it can't tell if you got the answer wrong it just keeps saying CORRECT!,
...
0
votes
1answer
28 views
How to make a plot that has x-axis for specified time frame in tcl/tk?
I'm fairly new to tcl/tk and i'm trying to create a stripchart plot that allows me to set the time frame for x-axis example:
Link to pic of a time graph
I'm able to do it with dates, like this:
set ...
0
votes
1answer
28 views
Where in the Tkinter application stack is a question mark (“?”) substituted in place of Unicode keyboard input into an Text widget? [duplicate]
Where in the Tkinter application stack is a question mark ("?") substituted in place of Unicode keyboard input into an Text widget?
Possible locations: Python, Tkinter, TCL/TK, Windows, Windows ...
0
votes
1answer
25 views
how to invoke a method from an Entry Widget in Ruby Tk
I'm looking for an option or a way to bind an event, which invokes a method from an Entry-Widget.
Like the command option for button-widgets: command { method } or
like binding an event for ...
0
votes
1answer
28 views
Formatting items in a ttk::treeview for display
Is there a way to influence the rendering of items in a ttk::treeview? I would e.g. like to internally store sizes as plain numbers in bytes but display them formatted in kB or MB.
So far I'm storing ...
0
votes
1answer
19 views
How to keep widget at bottom of frame?
My main window launches a top-level window with a sub-frame (to browse/select a directory) along with 'load' and 'add directory' buttons at the bottom. The 'add directory' button deletes all the ...
0
votes
2answers
53 views
tkColorChooser color testing
I have a question about tkColorChooser. I am working on a GUI for plotting functions and a user of the program has to pick the color of the function they want to plot. I would like to test whether the ...
0
votes
2answers
53 views
how can you display an image on a gui using tk in python2.7
i need away to be able to show an image when i run the python code in its gui form if possible. Also do i have to type in the folder name and file name in the code if you know the answer i tried pil ...
0
votes
1answer
19 views
Storing frames in list
I'm trying to store frames in a list so i can get my widgets 3 by 3 on top of each other whit a small space in between them
But i can't seem to make it work.
Code:
self.cboCombo = []
...
1
vote
1answer
28 views
in python2.7 how to align the text with the button
in python 2.7 I'm trying to align the text frankie anne so its next to the name button and 27 so its next to the age button can only get them in center so far. tried left and bottom already didn't ...
0
votes
1answer
31 views
how to change the values in a combobox dynamically in Ruby Tk
The idea is quite simple: I have 2 comboboxes. The second one should refreseh its values depending on the chose from the first one.
# combobox 1:
$shape = TkVariable.new
$combobox_1 = ...
0
votes
1answer
55 views
traversing a ttk::treeview in Tk
Is there a simple way to traverse the items of a Tcl/Tk ttk::treview as if they were items in a listbox? Example:
A
| |-- B
visit | | |-- C
order | | ...
0
votes
0answers
18 views
Tk::GraphWiz Zooming
I've been trying to plot a connectivity graph using Tk::GraphWiz.
I have the following code:
use strict;
use warnings;
use Tk::GraphViz;
use Tk;
my $graph ='graph PathsOfPin {
a [label = ...
0
votes
1answer
25 views
How to scroll frame widget in perl using Tk module
How to attach scrollbar widget to frame? I tryied to do this like with other widgets like text or entry but I've got error.
0
votes
1answer
46 views
Making A Statistics Text File (Python)
Im making a program that takes a name and certain input in the form of numbers and gives them a score i want this score to be saved in a text file and i want to be able to do it multiple times but ...
1
vote
1answer
30 views
List of Sequences Available for Each TKinter Widget
Is there a reference site that contains, for each Tkinter widget, a list of all available sequences for binding?
For example, I can bind a callback to a TreeView with this code:
...
1
vote
1answer
25 views
[Python/Tkinter]How can I fetch the value of data which was set in function “event_generate”
I'm using Python 2.7.4 and new to Tkinter, and I'm stuck with the following code.
I generated an event "test" and set the "data" option with a string, but an error occurred when retrieving it from ...
0
votes
1answer
25 views
How to use TkInter fill or expand functions with self?
I have a very simple program with TkInter in Python.
How to I use the "fill" or "expand" options with the following code?
from Tkinter import *
class Application(Frame):
def sayhello(self):
...
1
vote
1answer
45 views
Tkinter, tkmessagebox keeps sending me to the root (python)
I'm having a problem. Now I have a root window and a couple of "TopLevel's". But every time any window triggered by "tkmessagebox" gets executed, the message box appears and the root window gets sent ...
1
vote
1answer
65 views
How to use progressbar indeterminate in ruby/tk?
I cant figure out how the progressbar in ruby/tk works in indeterminate mode.
I can get the progressbar showing but it will not move.
an example if I just use this line in my code
...
0
votes
1answer
44 views
update idletasks when toplevel hasn't the focus
I've a ttk::progressbar in my toplevel (the one and only .) which I update via the following function:
proc progress {x} {
global prog
set prog [expr fmod(($prog +$x),100)]
update idletasks
}
...
0
votes
1answer
35 views
perl, tk module. update checkbox when refered variable changes into thread
I have some checkboxes and I have variables that refered to their value. I have shared this variables and called a sub with creating new thread. Variables change into this sub but look of widgets ...
0
votes
0answers
25 views
No Tk spawn window from Tkcon
I am running the following two tutorial lines:
package require Tk
grid [ttk::button .b -text "Hello World"]
When running from a wish85 or tkcon executable I downloaded from the web, the 'Hello ...
0
votes
1answer
21 views
Linking against tcl when building matplotlib
I am trying to build matplotlib from source. I have pre-built tcl and tk from source at a local location: /home/my_user_name/local, and added /home/my_user_name/local to basedir in setupext.py.
...
0
votes
0answers
56 views
Creating custom tk canvas widget
I need to crate custom tk canvas widget (plot). How to do it is described http://www.tcl.tk/man/tcl8.0/TkLib/CrtItemType.htm.
It is the dispay function which is called when canvas need to show ...
0
votes
1answer
31 views
Perl Tk update(redraw) widgets in sub(in thread)
I have some widgets, checkboxes actually. And I have variables that contains their value. I have shared this variables and called a sub with creating new thread.
Variables change into this sub but ...
0
votes
1answer
27 views
Perl Tk refresh checkbutton inside sub
I have some checkboxes that change their value inside sub. Multiple times. But I all checkboxes stay const until the end of sub. And only when sub finished, checkboxes update.
So how to make them ...
1
vote
1answer
102 views
passing CC/CFLAGS/LDFLAGS from Makefile to ./configure of Tk/Tcl
I'm trying to compile one library (xcrysden, based on Make file) which during its compilation execute ./configure of an external dependencies - Tk and Tcl 8.5 - and compiles them.
So, the structure ...
0
votes
2answers
47 views
RVM Ruby with TK installation (OSX)
I'm trying to install Ruby with TK support.
Using RVM, I did this:
rvm install 1.9.2 -C --enable-shared --enable-pthread
The installation appears to work fine, and I can see something called
...
1
vote
1answer
60 views
tkinter - how to open multiple filedialogs?
in python's default editor, IDLE, it is possible to have multiple 'Open' dialogs opened at the same time.
I'm looking at their source, but I can't find where I can have this behavior replicated. from ...
0
votes
0answers
43 views
Is there any way to achieve printing functionalities in a Tcl application similar to that in Excel
I have an application that uses tablelist, I want to implement printing capabilities with a print preview and functions to print the whole tablelist and/or selected rows and columns, and I want the ...
0
votes
1answer
39 views
Can ttk radiobuttons be made to have style Toolbutton by default?
I can set Toolbutton style for individual radiobuttons:
#!/bin/sh
# \
exec /usr/bin/wish "$0" "$@"
set X11 /usr/X11/include/X11/bitmaps
image create bitmap LeftImage -file "$X11/left_ptr"
image ...
1
vote
1answer
93 views
Matplotlib and multiprocessing RuntimeError
I'm trying to use multiprocessing and matplotlib together.
I'm creating a standard Pool, adding work with apply_async and updating the GUI with apply_async's callback function, which runs on the ...
0
votes
0answers
86 views
WWW::Mechanize + Coro/EV + Tk = program dies kind of randomly
I got to a point where I can't even begin to think how to solve this problem:
I'm using a Tk form to ask for an URL, use WWW::Mechanize and Coro threads to fetch some images, then an other Tk windows ...
0
votes
1answer
113 views
tkinter.TclError: unknown option
Upate:
It was just a typo while creating btComputePayment.
SOLVED
I'm learing Python using the book "Introduction to Programming Using Python (Pearson 2013)".
Currently I'm doing an exercise in ...
0
votes
1answer
73 views
How can I check if 2 drawn lines overlap?
I tried looking at the line-line intersection test but I don't quite understand it because it was using the endpoints of the line.
def lines(xcoord, ycoord):
penup()
goto(xcoord, ycoord) ...
1
vote
2answers
54 views
how to open windows one after another on hitting ok button in perl tk?
I am implementing a gui using perl/tk.
I wish to hit OK button after filling values in entrybox on my first window. Now after hitting OK button another window will popup with some new entry fields. ...
0
votes
2answers
85 views
tkinter canvas in grid has extra space
I have a canvas inside a frame and I've said the canvas should be 250x250. But for some reason it is being created bigger, with extra space on the right and botom. Here's my code... any ideas?
from ...
0
votes
1answer
61 views
Signifying unsaved changes by prepending * in window title - how to add a black dot in the window close button on Mac OS X?
I am writing a text editor in Tkinter, using a TopLevel window that includes a Text widget. Currently, when a document/buffer contains unsaved changes, I prepend the title of the window with an ...
1
vote
1answer
43 views
Python Tkinter callbackfunction executes before mainloop
I'm trying to build a gui for communication with a serial device. For this I'm using Tkinter. My problem is, that every time I execute the script only the estCon-function is executed and the mainloop, ...
0
votes
1answer
29 views
Window doesn't appear in Perl/Tk
$mw=MainWindow->new(-title=>'Game of Life');
$frmitems=$mw->Frame;
$frmsettings=$mw->Frame;
$lab1=$frmsettings->Label(-text=>'Size of square:')->pack;
...
1
vote
1answer
38 views
R tcltk, tkframe expansion
I am thinking of creating a widget with 2 checkbuttons, each in a tkframe. By clicking the 1st checkbutton, I hope the 1st frame will expand to display more lines of options. But when clicking the 2nd ...
1
vote
0answers
19 views
.onLoad and gWidgets R - error in package build
I've just finished making another R tool for a colleague and have done a simple gWidgets GUI to go with it. However I'm having trouble getting it to come up on package load:
The error when building ...
1
vote
1answer
46 views
Label inside a frame won't align the same
So I'm making an interface using TCL/TK and I'm having a weird issue, pictured below. The two frames on the left (colored red) are made in the same way. The labels should be stickying to the e and w ...
1
vote
1answer
87 views
How do I change the text colour of an active cell in a TkTable in Python?
I am using a tktable in an application I am making using the Python's tkinter module.
When I select a cell and type in it the colour of the text is white, which is very hard to read. How do I change ...
-3
votes
1answer
68 views
Destroying and Recreating a TK Window in Python
I create a root window in thread using python. Then next is I need to destroy it and create a new window but an error was out saying that threads can only be started once. How can I start a new window ...
2
votes
0answers
41 views
ruby Tk app running in while loop displays twice and then stops responding
I'm pretty new to ruby and am trying to implement a Tk application that will display a window prompting for input at a certain interval. In between the interval I want the window to not display in ...
0
votes
1answer
30 views
Ruby/Tk Paned window 'orient' option will not work with horizontal value
Trying to add a Paned window in Ruby/Tk and I'm getting the following error:
C:/Users/user/Ruby193/lib/ruby/1.9.1/tk.rb:3016:in `_invoke': Attempt to change read-only option (RuntimeError)
whenever ...
0
votes
2answers
44 views
How to save Plotchart canvas other than PostScript without displaying it?
I read the section OTHER OUTPUT FORMATS of Plotchart documentation, but still can't figure out how to do it.
I want to:
Save canvas as image without displaying it. So I can run it in batch mode.
...
0
votes
1answer
62 views
Finding the type of a Tk widget
Is there a way to know what is the "type" of a Tk widget?
As an example, let's suppose I create a label, using the tk::label command or the ttk::label command.
After that, I just have the path name ...







