0
votes
1answer
23 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
58 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 ...
2
votes
1answer
147 views

simple Tk application - draw on the click of a button

Can anyone tell me why my 'addLine' method is failing to call when the self.rec button is clicked? from tkinter import * from tkinter import ttk root = Tk() class Paint: def __init__(self, ...
0
votes
0answers
72 views

How would one use Tk to create a paint-like program with oval, rectangle etc buttons? How to save it (2 Parts)

I wasn't able to get an answer to a question I asked pertaining to a paint-like application, so I'm going to try to understand this more generally. Here is my original question: Tk Canvas Objects ...
0
votes
0answers
71 views

Tk Canvas Objects Failing to Bind

I'm putting together a paint-like program to make visual representations for certain objects which are part of groups. I would like to get the 'pencilButton' working so I can at least get an idea of ...
2
votes
1answer
183 views

Python tk window get x, y, geometry/coordinates without top of window

I am using tk in python (3), though I'd assume that this applies to any language. I am looking to get the current x, y coordinates of a tk window outside of the title bar: import tkinter root = ...
2
votes
0answers
809 views

tkinter python multiple Scrollbars in Notebook widget

I'm using Python 3.2.3 and Tkinter (8.5.11) on Mac OS 10.7. I have set up a Tkk Notebook widget with several tabs. On the first three frames, there are Listboxes with Scrollbars synched to them. Each ...
0
votes
2answers
200 views

python 3.2.3 Tkinter scale widget hangs when nested in Frame

I'm relatively inexperienced with Tk, but I've done a few simple projects before and this has me stumped: I have a scale widget that represents a time-slider. A threading.Timer goes off at intervals ...
2
votes
1answer
381 views

Python: drawing non-overlapping circles - recursion fails, 'while' works

I am creating a game, where it will ask the user to click a series of circles in numerical order. My question is between lines no. 91 and no. 110: why does the recursion logic generate circles that ...
0
votes
0answers
294 views

python 3.2.1 tkinter.tix.FileEntry - sizing the dialogue?

I've written a simple GUI using python 3.2.1 and Tk/Tix. One of the widgets is a FileEntry. When the user selects the button to open a file selection dialogue - launched from the FileEntry widget - ...