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

Multiple Images in EasyGui

Basically I want to create type of quiz in Python 3.4 with EasyGui using multiple images on the button boxes. How I'd imagine it'd work would be like this: import easygui as eg # A welcome message eg.msgbox ("Welcome to the quiz", "Quiz!") # A…
0
votes
1 answer

Py2app: saving files on hard drive with easygui

I usually save xls files created within Python scripts on my hard drive. That 's usually a pretty straight forward thing to do with pandas, for instance. My problem is that I'm trying to accomplish this from a py2app-compiled script. I tried using…
Lucien S.
  • 5,123
  • 10
  • 52
  • 88
0
votes
1 answer

easygui CLOSE button (on top right of window) not functioning

i have created a chat system in python, using easygui for graphical user interface. there are minimize,maximize and close button on top right of window,but the close button is not functioning at all.i just can use the exit button which i created to…
kali.python
  • 41
  • 1
  • 5
0
votes
1 answer

formatting content in easygui message box and adding scrollbar

After this code runs, I would like the results to appear in a message box as separate lines of text, and not as tuples (which is what is happening now). Essentially I would like to see the results in the message box just as they would if I printed…
kflaw
  • 424
  • 1
  • 10
  • 26
0
votes
1 answer

Im making a quadratic equation solver with python and easygui but i cant enter negative numbers. Is there any way around this

import math import easygui as eg eg.msgbox("This program solves quadratic equations Enter the values of a, b and c ") a=eg.integerbox("enter a") when I try to enter a negative number or a number over 99 …
user2757771
  • 158
  • 7
0
votes
1 answer

Python: EasyGui printing variable to GUI

This may seem a silly question, but how do you print a variable on easygui? Here is my code: import easygui as eg a = 4 eg.msgbox(msg='Hello World',a) Error is: SyntaxError: non-keyword arg after keyword arg I know why I'm getting the error,…
BubbleMonster
  • 1,366
  • 8
  • 32
  • 48
0
votes
1 answer

Shelve causes pygame fatal error?

I have made a simple racing game in python with pygame, easygui, and shelve. I finished the game and it worked great both from idle and from my .desktop file. After that i decided to attempt to add a highscore system. The system works great from…
Kevin Klute
  • 450
  • 1
  • 4
  • 22
0
votes
1 answer

EasyGUI indent error, I have no idea why

#!/usr/bin/env python import easygui as eg start = eg.msgbox('In your head, pick a number between 1 and 100. No matter what, I will guess it in no more than 7 tries. When you think of a number, press OK to start the program.') maximum =…
01110100
  • 793
  • 4
  • 9
  • 17
0
votes
1 answer

Combine wxPython with easyGUI to show two windows separately

I work on a GUI with Python. I tried easyGUI (http://easygui.sourceforge.net/) and it works really good except I have not found a way to show two windows simultaneously. This is what I have tried so far in GNU/Linux: from easygui import * import…
Bebe
  • 347
  • 1
  • 5
  • 10
0
votes
3 answers

Am using easygui to make a game but there is no way of closing

Am trying to make a game using easygui but the only way to shut is to shut python down completely because the X button won't work. How do I get it to shut the game?
0
votes
1 answer

Select Multiple Tuple Items With Easygui's multchoicebox

I'm using easygui.multchoicebox() to select a number of items in a tuple. How do I make a conditional that executes code when certain items from the tuple are selected? Here is example code that does not work (nothing is returned): from easygui…
Eric
  • 99
  • 2
  • 9
0
votes
1 answer

Using EasyGui With Cx_Freeze

I've created this question relative to my other one - How to include modules in Cx_freeze, but decided that wasn't really realtive to my current question. When i freeze my program, which uses easygui, I get a whole bunch of errors about missing…
Joseph Smith
  • 3,243
  • 5
  • 20
  • 18
0
votes
1 answer

Python EasyGUI: How to get a scroll bar inside multienterbox

I want to have a simple gui program to edit a python dictionary, so naturally EasyGUI is my first choice. My problem is that my dictionary is long, {key1:v1,key2:v2,...,keyn:vn}, and when I enter the following…
Clover
  • 1
  • 1
0
votes
2 answers

EasyGUI Output?

Right...so, I have two lists. One has 16 entries. The other at least has a couple hundred. Outputting them with EasyGUI is easy enough, with either a textbox() function or msgbox() function. The problem is that I want it to display with one list…
Hersh S.
  • 197
  • 2
  • 10
-1
votes
3 answers

Can't figure out how to get EasyGUI for Python set up on my Mac

I'm trying to program a game that would use parts of Pygame and EasyGUI. Problem is, I have no idea on how to set up EasyGUI on my Mac. Just switched from Windows, so I still have some trouble maneuvering inside of it. If anyone could help me, I…
crazedsuirlz
  • 75
  • 2
  • 9