0
votes
1answer
24 views
Linking Tcl/Tk to Python 2.5
Hi,
I have an existing Python 2.4 and it is working properly with tkinter as I tested it using
python
import _tkinter
import Tkinter
Tkinter._test()
…
1
vote
1answer
37 views
How do I get stdout from tcl into a python string variable when using tkinter?
Hi
I have the following python code...
import Tkinter
root = Tkinter.Tk()
root.tk.eval('puts {printed by tcl}')
It prints "printed by tcl" to the screen. How can I capture w …
2
votes
5answers
443 views
Developing user interface in Python - TkInter Vs PyQt
Hi
If one wants to develop a user interface in Python, which one to go for: TkInter or PyQt.
I just started with TkInter and I was able to get some simple UIs going with elementa …
0
votes
2answers
18 views
How to bundle tkinter?
I am distributing an app that uses the Python/C API. I have all standard python modules in python31.zip which is basically an archive of the Lib folder in the python install direct …
1
vote
3answers
173 views
Need a GUI Builder for Tkinter / Python
Hello, I need a GUI Builder for Tkinter... was using something a couple of years ago, but I can't find it anymore (I remember something related to Komodo IDE, but perhaps I'm wrong …
0
votes
3answers
70 views
How to play sound till the user hits a key?
First thought of implementing this using threads but python doesnt have a way for killing threads. I have read the other topic on killing threads.
Is there any proper platform inde …
0
votes
1answer
17 views
Twisted/tkinter program crashes on exit.
I am running an app using twisted and tkinter that sends the result to the server, waits for the server to send back a confirmation, and then exits. So, the function I use to exit …
0
votes
2answers
26 views
Python Tkinter Prompt
I am trying to prompt the user to enter a string of text. Is there available with python tkinter a Javascript like prompt?
1
vote
1answer
37 views
Dice Roller using Tkinter
Thank you to everybody who helped answer my last question:
My friend took the code, and has attempted to use Tkinter to make a box that we could use to make things nicer-looking, …
2
votes
1answer
77 views
Timer in Python
Hi,
I am writing a python app using Tkinter for buttons and graphics and having trouble getting a timer working, what I need is a sample app that has three buttons and a label.
[ …
0
votes
1answer
44 views
In python’s tkinter, how can I make a Label such that you can select the text with the mouse?
In python's tkinter interface, is there a configuration option that will change a Label such that you can select the text in the Label and then copy it to the clipboard?
EDIT:
Ho …
0
votes
2answers
61 views
Get Tk winfo_rgb() without having a window instantiated
I know I can call Tkinter.Tk().winfo_rgb(color) to get a tuple of values that represent the named color.
for instance Tkinter.Tk().winfo_rgb("red") returns (65535, 0, 0)
The prob …
0
votes
2answers
38 views
Determine which button was pressed with tkinter in Python?
I'm making a simple little utility while learning Python. It dynamically generates a list of buttons:
for method in methods:
button = Button(self.methodFrame, text=method, co …
0
votes
1answer
65 views
How do I change the foreground or background colour of a Tkinter button on Max OS X 10.6 with Python 2.6.1?
I've been working through the Tkinter chapters in Programming Python and encountered a problem where the foreground and background colours of a button will not change. I am working …
0
votes
2answers
106 views
Tkinter how to remove existing background color of text when highlighting
I'm writing a small utility in Python that does some pattern matching of text. Text that matches the pattern the user has entered gets highlighted yellow. I'm achieving this usin …
