VOOZH about

URL: https://www.geeksforgeeks.org/python/message-boxes-using-pyautogui/

⇱ Message Boxes using PyAutoGUI - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Message Boxes using PyAutoGUI

Last Updated : 15 Jul, 2025
PyAutoGUI is a Python module which can automate your GUI and programmatically control your keyboard and mouse. This article illustrates the GUI functions to create display boxes. If you want to know more about PyAutoGUI and its ability to automate your keyboard and mouse, follow this article : Mouse and Keyboard Automation using PyAutoGUI PyAutoGUI does not come with python, so go to command prompt and type the following :
 pip3 install PyAutoGUI
alert() : Displays a simple message box with text and a single OK button. Returns the text of the button clicked on. Output : It will display the alert box with the given text and when clicked OK it will return 'OK' 👁 Image
  confirm() : Displays a message box with OK and Cancel buttons. Number and text of buttons can be customized. Returns the text of the button clicked on. Output : It will display the alert box with the given text and on clicking the button it will return the text on the button. In this case its 'OK' 👁 Image
To have multiple select options - Output : On clicking A, it will return 'A' as output. 👁 Image
  prompt() : Displays a message box with text input, and OK & Cancel buttons. Returns the text entered, or None if Cancel was clicked. Output : It will return the text entered, in this case 'GeekForGeeks' or None if cancelled was clicked. 👁 Image
  password() : Displays a message box with text input, and OK & Cancel buttons. Typed characters appear as *. Returns the text entered, or None if Cancel was clicked
Output : It will return the text/password entered, in this case 'GeekForGeeks' or None if cancelled was clicked. 👁 Image
Comment
Article Tags: