Tagged Questions
1
vote
1answer
52 views
Can't seem to import Tkinter for python
Hello and thanks for looking at this,
When I try to import tkinter it says unresolved import
ImportError: No module named tkinter
There was some kind of error when I installed python originally
...
1
vote
3answers
42 views
using entry from a class in another classes function
the variable function is given via the class functionframe. When trying to use it in add_function i get this error.
AttributeError: class FunctionFrame has no attribute 'function'
class ...
2
votes
1answer
66 views
How to open Tkinter programs nicely?
When I opened a Tkinter program, 3 things are opening:
My program
IDLE (shell)
Black screen (python command line)
How can I block second and third ones for a clean view? Thanks.
2
votes
0answers
106 views
Pything tkinter: plot function with canvas, HOMEWORK
An assignment for uni asks me to use tkinter to create a GUI program that takes a function, color, start point, end point and how many steps to take between (line drawn between each step).
I have had ...
0
votes
0answers
81 views
Python HOMEWORK: GUI Tkinter
Im working on a Python assignment using Tkinter. It is suppose to look like this, but looks like this.
Can you please give me a little help getting the layout right?
With the sunken frames, space ...
0
votes
1answer
25 views
Filedialogue error in Tkinter
Question about Tkinter :
I want to basically create a browse along with a text display which will display the file that I pick from the browse button. Following is my code :
Edit 1.
button_opt = ...
-2
votes
1answer
26 views
Problems with .place in GUI with Tkinter
Usually this format works for all of my programs but for some reason its not working right now
from Tkinter import *
class gui1(Frame):
def __init__(self, master):
Frame.__init__(self, ...
1
vote
1answer
30 views
is Tk().withdraw() suitable to run from a thread?
I am implementing a clipboard monitor in my python app. If the copied text meets certain requirements, i want to show the user a dialog. if the user clicks "Yes" i'd like to trigger a function - in ...
0
votes
1answer
73 views
Accessing class methods from another class in Python 2.7
I am writing a Tkinter GUI for an assignment and have come to have some problems with accessing class methods. The first bit of code I've pasted in here is the top-level interface class. The main ...
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):
...
0
votes
0answers
36 views
Why is the TKinter Menu blank on Mac OS (unless hovered over)
The TKinter menu drop-down is blank, except for the menu item you hover over. Why is this? Python 2.7.4 on Mac OS.
Here is my 'working trivial example' code:
from Tkinter import *
class ...
0
votes
1answer
43 views
tkmessagebox askquestion with multiple answers
I've been trying to get tkmessagebox.askquestion to ask a question where there are more answers than 'yes' and 'no.' I know that askquestion returns a string 'yes' when yes is clicked, and I'm trying ...
1
vote
1answer
44 views
Python - Tkinter - GUI
I'm creating a new application for my current project using Python. This is the first time I use it and it has been a learning experience...
I have a button in my application that calls the ...
1
vote
1answer
61 views
PyObject segfault on function call
I'm trying to use Python to open a dialog to accept input into my C++ application.
Here is a very minimal representation of what I am trying to do:
#include <iostream>
#include ...
1
vote
1answer
18 views
How to open an exe file in Tkinter window
I am trying to open the applications like notepad,photoshop,etc. inside the Tkinter window in Python. I tried using os.sytem() but it opens independently(not inside Tkinter window).
I had searched a ...
0
votes
1answer
49 views
Python 2.7.3 Why is my textbox relief not working?
I am trying to create an email client. Since I am testing the program on Mac OSX, I have realized that I can't see the text box without relief. So, I attempted to set it to GROOVE.
def mainFun(self):
...
0
votes
2answers
42 views
Python- Custom speed digital Clock
I am writing a program in python, and i need a digital clock with custom speed. right now, i am using a clock which is working at a normal pace and sync with the windows time clock. How to write a ...
0
votes
1answer
29 views
Unable to make a desktop like container in Python Tkinter
I need to make a desktop container kind of frame in Python so that from the menu bar I choose the option the window would open in that desktop pane, Like we use to deal with the Professional ...
1
vote
1answer
22 views
How to maintain multiple references for PhotoImage objects
I am trying to display two image objects in my Text widget. Initially, both objects showed up as empty images. After some research, I learned that I need to keep a reference to the image. I added an ...
0
votes
1answer
30 views
How to keep the window focus on new Toplevel() window in Tkinter?
I am currently writing a win32gui python27 application (I'm running win7). I am wondering if it is possible to create a new window from my mainloop() and KEEPING the focus on it, possibly by stopping ...
1
vote
1answer
38 views
Creating Toplevel widgets that are thread safe
I'm trying to learn how to use the thread module. I followed along with the instructions here: http://effbot.org/zone/tkinter-threads.htm
My hope is the test script will:
Print out the "count" ...
2
votes
1answer
80 views
I can't display text over my tkinter image
I am trying to display text on top of my image but I cannot do do this, can anyone help please.
Code:
import Image and the graphics package Tkinter
import Tkinter
import Image, ImageTk
class ...
1
vote
2answers
122 views
How to bind spacebar key to a certain method in tkinter (python)
I am working on a project in python, and I made a method to draw a specific thing in tkinter. I want it so that whenever I press the spacebar, the image will redraw itself (run the method again ...
1
vote
1answer
44 views
how to select multiple objects with mouse in tkinter python gui?
I am trying to select multiple objects using mouse just like in windows click and drag. i am using tkinter in python to buils this gui. i am creating objects as shown in below code.
import Tkinter as ...
0
votes
4answers
94 views
Ending A Function In Python
I have an looped function in python using Tkinter, and when I press a button using Tkinter it does not end. It continues to the new function that has been specified by the button but it continues on ...
1
vote
2answers
58 views
Tkinter Text not displaying
I'm sorry if that this is my second post in such a short period of time but I don't understand what is happening.
This is my code so far:
def countdown(self, remaining = None):
hours = ...
1
vote
1answer
49 views
how to save and open variables to a file using tkFileDialog?
I am trying to save few variables in a file using tkFileDialog save option. and in later part i have to retrieve the same variables. i am not getting any idea how to do that.
Thank you
0
votes
1answer
308 views
Python 2.7 Tkinter Change Label text on button event
Im very new to Python(2.7) im learning GUI design(Tkinter) and keep running into different syntax/no call method/global name not defined errors when trying to implement a simple label text change from ...
0
votes
1answer
66 views
Can't retrieve data from my database for my tkinter GUI
It will not allow me to access my hints from my database, an error comes up.
Code:
def do_question(self):
self.func1()
#myGlobal + 1
if myGlobal >5:
import MathsvadersReal
SQL = 'SELECT * ...
1
vote
1answer
62 views
Python Tkinter grid-geometry sticky setting not effective(?)
I'm designing simple entry dialog in Python/Tkinter using the grid geometry, and getting some unexpected behavior. When I start out with this code:
winAddNew = tk.Toplevel()
winAddNew.title('Add New ...
-1
votes
1answer
44 views
My database SQL does not allow me to access a hint
It will not allow me to access my hints from my database, an error comes up.
Code:
def do_question(self):
self.func1()
#myGlobal + 1
if myGlobal >5:
import MathsvadersReal
...
-3
votes
1answer
27 views
Does anyone know how to refesh my Q? [closed]
I have created a maths game and when I load the first questions its fine, if i get the answer right the score increases by 100 but then when it loads the next question, it loads it directly on top of ...
0
votes
1answer
46 views
how to pass values to popup command on right click in python tkinter
I am developing a gui in which i created a right click popup menu with few option. now my query is how can i pass some variables or values or argument or strings to the command incorporated in popup ...
3
votes
1answer
134 views
Modify the default font in Python Tkinter
I'm working on a GUI in Python2.7, with Tkinter, and I have an annoying problem.
I would like to define the default font used by all the widgets, if possible in one line.
This line modify only the ...
0
votes
1answer
59 views
Does anyone know how to have a score increasing via a label
Baically i have created a simple maths game and made it display whether the question is right or wrong, but i can't get the score to update, also does anyone know how I can get the questions to ...
0
votes
1answer
97 views
Display realtime output of a subprocess in a tkinter widget
My question is almost the same as this one:
Widget to Display subprocess stdout?
but a step further.
I have the following code (python2.7):
def btnGoClick(p1):
params = w.line.get()
if ...
1
vote
1answer
104 views
Using tkMessageBox without importing Tkinter
I'm writing a module where I want to support popup dialogs to indicate errors, but I don't need or want a root window (because I want the module to be independent of the main GUI and share-able ...
0
votes
2answers
157 views
How to share data between two classes
Question
Is there a way to have two classes simultaneously inherit from one another?
Background
I am currently working on a Socket Server project. In this project, I have a two classes, a Server ...
0
votes
1answer
152 views
Difficulty understand Tkinter mainloop() in python
Okay, so I've got a basic window with an EDIT and VIEW button. As my code stands, EDIT and VIEW both return a message "this button is useless". I created these under the class "main_window". I ...
0
votes
0answers
50 views
Python 2.7: Creating a Tkinter interface to modify a dictionary?
I apologize in advance--this question is rather vague. Okay, so I've been doing my best to learn Python and I've decided to start my first "project". I want to build a very simple application that ...
0
votes
1answer
58 views
Python - formatted chat client
I have made a chat server and client which uses basic socket connections to send messages to a server which then sends them to all connected users. This was all done using print in the command line ...
0
votes
1answer
51 views
How do I align PanedWindows in Tkinter?
I'm new to Tkinter, and finding it a bit rough to get the hang of it. The point of this piece of code is to calculate time using the equation (Time = (Velocity - Initial Velocity) / Acceleration) But ...
0
votes
2answers
137 views
Tkinter Scrollbar in frame with multiple textframes
Question
How can I have a scrollbar which moves an entire Tkinter frame? Note: I am using Python 2.7.3.
Code and Explanation
I have this code for defining the scrollbar
scrollbar = ...
0
votes
1answer
37 views
How can I put the stdout into a text in Tkinter, python?
I use a button to callback a function foo:
def foo(value):
print value
root = Tk()
text = Text(root)
remap_button = Tk.Button(root, text = 'Remap', command = lambda: foo(val))
How can I print ...
0
votes
1answer
42 views
Python / Tkinter fails when classes are calling each other's methods
I'm on to programming a graphical frontend in Python 2.7.3 using Tkinter. I've got a main menu (A in the example) and a window (B). A contains a listbox, B is doing something which needs the content ...
0
votes
1answer
60 views
How can I get user's choice using Tkinter.StringVar?
I am writing a GUI code using Tkinter in python:
var_alg_name = Tk.StringVar(board, 'Bilinear')
Tk.Label(board, text = 'Algorithm Name: ').pack(side = 'left')
ttk.Combobox(board, textvariable = ...
2
votes
2answers
112 views
Why is tkinter not recognizing that this window is being resized?
When I try to detect that a window is resized with tkinter, it works most of the time. However, there is one exception; that is, when resizing it for the first time vertically and making the window ...
0
votes
4answers
245 views
How to set justification on Tkinter Text box
Question
How can I change the justification of specific lines in the ScrolledText widget in Tkinter?
What was the reason for my original errors?
Background
I am currently working on a Tkinter ...
3
votes
1answer
104 views
How to have windows automatically add an extension to a file? (Python, Tkinter)
Background
I am currently in the process of making a basic text editor in hopes of gaining a basic understanding of Tkinter. I want to make my own file format called .mydoc I have attempted to change ...
1
vote
2answers
126 views
How to specify where a Tkinter window opens?
How can I tell a Tkinter window where to open, based on screen dimensions? I would like it to open in the middle.


