Is it possible to get all of the children of a Tkinter widget, then get the ch开发者_运维技巧ildren\'s children etc.?
I want to embed a terminal in my main Tkinter window. I would like to have a sub window where a terminal (Bash based terminal) would run. I would like also to be able to let my program interact with t
Is there a way to play video files like AVI, MP4, etc.? I tried using PyMedia, but apparently it only works with Pygame开发者_如何学JAVA.
I\'m looking for a way to make one canvas display the contents of another WITHOUT duplicating the objects that are drawn in it. The second canvas needs to be just a display which takes as input what i
When I bind the event <Key> to an entry and read the content, the change somehow lags behind. I want to "dynamically update" another entry that shows the result of a calculation of the
I am trying to display real-time text in Tkinter after a Button command calls a function.The function should display a \"timestamp\" when PycURL receives \"HTTP/1.1 200 OK\".The function POSTs energy
I want to modify the code below to clear the Entry text prior to new text being written.Basically I want to delete text, wait one second, then write new text.This should give the appearance of \"NEW\"
Running this code on my linux mint 11 with Python 2.6 would normally lead to creating 2 windows, each of them having a frame with a Button:
I\'m trying to use Tk\'s \"tk scaling\" feature to zoom a GUI but it only seems to change the size of the widgets, not the text.Is it possible to use \"tk scaling\" with Tkinter and have it work appro
I would like t开发者_JS百科o update a Label in my GUI to be a sort of progress bar, display how complete a data transfer is.