Questions tagged [easygui]

EasyGUI is a module for very simple, very easy GUI programming in the Python programming language.

EasyGUI is a module for very simple, very easy GUI programming in the Python programming language.

196 questions
0
votes
2 answers

I get a traceback error when I try to open and read through the objects in a file in a directory. What am I doing wrong?

The point of my program is to search through a directory (given by the user) open the files in the directory, open the things in the files and look for a string inside the documents in the files. I use a GUI called easygui to ask the user fir input.…
Arya Shah
  • 3
  • 1
0
votes
1 answer

Use in a non-sequential manner of easygui.msgbox

If I want display a plotting, with for example matplotlib, AND a popup message with easygui: plt.show() msgbox("Hello world", title="Hello") it is needed to X-close the plotting window to see the popup windows (sequential read of the script). But…
servoz
  • 606
  • 9
  • 22
0
votes
0 answers

how to add one scroll bar to the window (easygui in python)

I am using easygui to create a GUI. But the message I want to display is too long, so that in the generated GUI, I cannot see the first sentence and the last sentence. What is wrong? and how can I see the first sentence and last one ? This is one…
tqjustc
  • 3,624
  • 6
  • 27
  • 42
0
votes
3 answers

Compare user input to known string

I'm trying to compare a word provided by the user (e.g "orange") to a list of words I have in a text file like the following: menu.txt apple banana orange grape mango The user input comes from an easygui.enterbox. I'm never getting the result I…
Ivs Babu
  • 3
  • 5
0
votes
1 answer

Changing background color in easy gui

I did not find any useful link that talks about how to change the background color in easygui. Is there a way to change the background color in EASY GUI ?
sara
  • 534
  • 1
  • 9
  • 22
0
votes
1 answer

displaying images in EasyGUI

I have question, please. How to display an image using easyGUI? I searched a lot, but I did not figure out how to do it. I only found this code that displays an image with buttonm and this is not what I want. image = "python_and_check_logo.gif" msg …
Asia Saeed
  • 122
  • 1
  • 12
0
votes
1 answer

EasyGUI and SimpleCV- TypeError: 'module' object is not callable

I am trying to make GUI for simpleCV program. I am using easyGUI to do that. Here is my code: from easygui import * from SimpleCV import * from cv2 import * from cv import * from PIL import * import time import sys while True: msgbox("""Welcome…
Asia Saeed
  • 122
  • 1
  • 12
0
votes
0 answers

Using easygui in Visual Studio Python Tools

I'm trying to import the easygui module into Visual Studio Python Tools, but thus far I have been unable to get it to work. Whenever I run anything involving importing easygui I get the following error: Traceback (most recent call last): File…
Dan F
  • 27
  • 1
  • 5
0
votes
1 answer

Converting text to binary. 2 part issue

Ok... Im writing a python script to convert text to binary... Im using easygui to quickly convert short phrases and test for issues. My issue... The main work horse is: BText = bin(int(binascii.hexlify(DText),16)) I have the value return through an…
0
votes
3 answers

How to make a python program loop/repeat

I have a python programming spelling game for children, and I need to make it loop/restart if the player clicks yes once they have finished the game, and exit the program if they click no. This is the top of my programming. #Declare Constants and…
Char
  • 7
  • 1
  • 5
0
votes
1 answer

Python: Displaying variable with multiple xml tags inside message box

I've been working on a script for a couple of days that will retrieve tags inside an XML file and output their values to a message box. Originally I was going to use Tkinter but I noticed that it would only print one set of tags, so I tried using…
Golthem
  • 1
  • 2
0
votes
1 answer

I am having problems in Python 2.7.5 to get EasyGUI working on Mac OS X

I am running Mac OS X Yosemite (v10.10) and I cannot get EasyGUI to work. I tried looking on easygui.sourceforge.net, but I got no working results. I was able to get it running temporarily if I typed in the following: from distutils.core import…
0
votes
0 answers

How to add 'backspace' event to easygui multenterbox fileds?

I am using easygui multenterbox so as to give users the option to edit specific information out of data being copied. My only problem is that pressing 'backspace' results in '\b' being added to the string instead of erasing a character. Has anybody…
MMH
  • 1
  • 2
0
votes
1 answer

Canopy + easygui

I would like to use my Canopy editor with "easygui", but I can't install it from the package Manager. Is there any way I could do it from shell without damaging anything? Thanks a lot in advance! edit simplest program: import easygui path =…
nick
  • 49
  • 7
0
votes
0 answers

Grails - NEGOTIATE authentication error: No valid credentials provided

Error: [main] WARN org.apache.http.client.protocol.RequestProxyAuthentication - NEGOTIATE authentication error: No valid credentials provided (Mechanism level: No valid credentials provided (Mechanism level: Failed to find any Kerberos…
G dangi
  • 188
  • 7
  • 19