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
1
vote
1 answer

easygui multchoicebox not allowing me to select multiple items

I can create an easygui multchoicebox that displays multiple items but I am unable to select more than one item at a time. ( multchoicebox is acting like choicebox). here is some example code: import easygui as g g.multchoicebox(msg = "Hi", title =…
Crawdad_Buckwheat
  • 313
  • 1
  • 4
  • 16
1
vote
1 answer

Python EasyGui : Returning User Input In TextBoxes

Hello i am currently using python 2.7 to create a GUI based program with the add on library EasyGui. I'm trying to take the user input from a multiline textbox and print those values to another function which displays inside a messagebox. currently…
at541
  • 207
  • 3
  • 4
  • 9
1
vote
2 answers

Python program not looping/restarting

I have a school assessment which is to make a child's spelling game, it has to loop/restart when the player clicks yes. So far when I test the game, the option/the easygui.buttonbox that asks the player if they want to play again and the yes/no…
Char
  • 7
  • 1
  • 5
1
vote
0 answers

Getting easygui to self update info

Trying to get a self updating speedometer and clock working for my truck using gps. So far I have been able to get the read out that I want using easygui and msgbox but it is not self updating which will not help much on either application. Below…
1
vote
1 answer

How to call external application with arguments in python on mac osx

I am using mac osx 10.9 and python 2.7 From one main app code, I want to call another application dailogbox.app present in /Applications location. dailogbox.app requires two arguments title and message as arguments. So, how to call from main app…
imp
  • 1,967
  • 2
  • 28
  • 40
1
vote
2 answers

Running a function in Python if a user chooses it (EasyGui)

I'm using EasyGui to allow a user to select multiple options. Each option is a function which they can run if they select it. I'm trying to use dictionaries as suggested in other threads but I'm having trouble implementing it (Module object is not…
Shankar Kumar
  • 2,197
  • 6
  • 25
  • 32
1
vote
3 answers

to program GUI app , what will be the must user and developer frendly toolkit in c++

i like to build desktop application , that will be must user friendly in view what i mean is that the look and feel will be natural in the way the user used to see windows apps . and this toolkit/framework to be as much as possible easy fast to…
user63898
  • 29,839
  • 85
  • 272
  • 514
1
vote
1 answer

Trouble installing EasyGUI into Anaconda

I'm trying to add EasyGUI into Anaconda but running into a problem. I keep getting invalid syntax errors I think because I'm not writing out the file directory correctly. I know after putting the path (C:\Users\User1\Downloads\easygui-0.96) I'm…
user104693
  • 11
  • 3
1
vote
1 answer

EasyGUI and Python if/else and loop

I seem to be having some issues with my if/else statements and EasyGUI choice box. I know that if the user presses "Cancel", it returns "None". My code always enters the "Else" statement. Also, my second For loop doesn't seem to be iterating. Is…
user2089438
1
vote
1 answer

(Python 2.7) easygui.choicebox if else statement how to

I am trying to make a mac address spoofer in python for my mac as i find other software to be unnecessary advance/hard to understand. First i want a choicebox asking what device you want to spoof but i can not get the if else statement to work. The…
1
vote
1 answer

Live plotting using matplotlib without hault

Here is a minimum working example of my code. I am trying to plot a live graph using matplotlib by taking some inputs from the user via gui. For building the gui, I used the library easygui However, there is one problem: the graph stops building…
pistal
  • 2,310
  • 13
  • 41
  • 65
1
vote
1 answer

How to install EasyGUI on Mac OS X 10.6 (Snow Leopard)?

I would like to install EasyGUI on Mac OS X 10.6, but am running into trouble. Has anyone successfully done this? If so, what explicit set of steps did you follow? Thank you.
ericg
  • 8,413
  • 9
  • 43
  • 77
1
vote
1 answer

Making a .py into a standalone executable with easygui and pygame?

I would be willing to use only pygame, but using easygui makes it a lot easier to select levels. I am running ubuntu, but if neccesarry I have access to a windows machine. My main purpose is to make it easier for my non-program savvy friends to play…
Kevin Klute
  • 450
  • 1
  • 4
  • 22
1
vote
3 answers

Can someone help troubleshooting EasyGui with me?

I am trying to install EasyGui on Python 3.3 and I don't see to have it. I had gotten it to work with Python 2.7 but not for 3.3. I follow the instructions from their website: Unpack the archive file into a temporary directory Open a console…
user2063042
  • 10,577
  • 3
  • 14
  • 6
1
vote
1 answer

Convert list to variables in python 3

I am using easygui to get a list of integers from the user. It outputs something like this: fieldValues = [1,2] I want to convert that list to: var1 = 1 var2 = 2
ahd1601
  • 11
  • 1
  • 3