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

easygui buttonbox crashes becase of default font from Tkinter

I'm using easygui in a Python app and then generate an .exe with PyInstaller. Everything works fine in my computer, but my colleague get this weird error when they try to run the app : Traceback (most recent call last): File…
-1
votes
1 answer

How do I run a good easygui choicebox function

if event.type == MOUSEBUTTONUP: mouseX, mouseY=event.pos if warsaw_button.collidepoint(mouseX,mouseY): choices = ["build a structure", "acquire units", "destroy structure", "launch from silo"] …
-1
votes
2 answers

Unable to import `floatbox` from `easygui` module

When I am running my script in CMD, it displays error: ImportError: cannot import name 'floatbox' from 'easygui' So I tried uninstalling and installing easygui several times, but same result.
-1
votes
2 answers

how to center my text in msgbox in easygui (python)

I have created a msgbox with easygui and everything works fine except that the text inside the box isn't centered as your can see in this screenshot here is my code: from easygui import * ("Please upload your Background picture", "Picture Upload",…
j.downing
  • 1
  • 4
-1
votes
2 answers

python how to remove spacific line in file

I'm trying to delete from a file. This is what I am trying to do. 1.importing Easygui 2.Put three modes plus quitting 3 modes are (see, add, delete) Everything is working except deleting part. this is what I have import easygui filea =…
-1
votes
1 answer

How to change easyGUI python text color

I want to change the text color of msgbox, ynbox and the output text in easyGUI. Please help!
Heartzayes
  • 11
  • 1
-1
votes
1 answer

Can't find specified path for easygui

I'm trying to install easygui for python 3.4.3 but when I put in cd C:\Users\Blank\Downloads\easygui-0.97.4.zip\easygui-0.97.4 in the command prompt it says The system cannot find the path specified
-1
votes
3 answers

If and else statements in easyGUI?

So i have a basic question: how to use if and else statements correctly with easyGUI? This is what I have: import easygui msg = "Oh i see m9, choos your difficulty" title = "Mountain Dew Franchise" choices = ["Pro 360 noscoper(+1001)", "Dank…
-1
votes
2 answers

Python League table problems

I am attempting to make a football league table in Python out of information from the user. The problem I am having is getting row[6] (goal difference) and row[7] (points) to do the correct process and place this into the correct cells in the .csv…
-1
votes
2 answers

Run a GUI and play a alarm sound simultaneously in python using easygui and pyaudio

Hi I need to run my gui simultaneously with my alarm sound and stop the iterating alarm sound when i click ok button in the 2nd dialog box. To achieve this task i created 2 files which is the main file(gui using easygui) and the AudioFile class…
tk_
  • 16,415
  • 8
  • 80
  • 90
-1
votes
1 answer

Same TextBox in EasyGUI

I wish to have each item in my list printed on a different line in the same textbox in EasyGUI. How do I code for this? EDIT: Sorry, I was a bit vague. Let me explain further. I have a list called combinations. It has 50-100 entries. When I try to…
Hersh S.
  • 197
  • 2
  • 10
-2
votes
3 answers

How do we use easygui load a image

I can't seem to load a picture I tried this image = "python_and_check_logo.gif" msg = "Do you like this picture?" choices = ["Yes","No","No opinion"] reply = buttonbox(msg, image=image, choices=choices) Can anyone help me load a picture?
James Romo
  • 58
  • 5
-2
votes
1 answer

Random code not reading? cannot concatenate?

PlayerAnswer = easygui.enterbox ("What is" +Figure1+ "+" +Figure2+ "?") This line of code is not reading, both Figure1 and Figure2 are defined as random variables, and the random module is imported. Here is how I've defined them at the top of the…
Char
  • 7
  • 1
  • 5
-2
votes
2 answers

Can't import python modules

I am trying to install EasyGUI. There is no setup.py so I can't install the module like you can with a proper module that has a setup.py file Any help would be appreciated. Thanks
-3
votes
3 answers

Add two random numbers together?

I am trying to figure out how to add two random numbers together. I am making a maths game and I am importing random numbers to make up the equation, but because they are random I will need the programme to calculate the answer and give the player a…
Char
  • 7
  • 1
  • 5
1 2 3
13
14