다른 명령
PyautoGui 메시지창 띄우기
list_altPyautoGui 메시지창
- alert(): A simple message box with an OK button.
- confirm(): Displays a Yes/No message box and returns the option chosen.
- prompt(): Opens a dialog box to collect input from the user.
- password(): Similar to prompt(), but hides the input (for passwords).
Alert Message Box
# Displays a simple alert message with an OK button. <source lang=python> import pyautogui pyautogui.alert('This is an alert message!')
Confirmation Message Box (Yes/No)
- Displays a confirmation message box and returns the user’s response as 'OK' or 'Cancel'.
import pyautogui response = pyautogui.confirm('Do you want to proceed?') print(f'User selected: {response}')
Prompt for Text Input
- Opens a dialog box for the user to input text.
import pyautogui name = pyautogui.prompt('What is your name?') print(f'Hello, {name}!')
Password Input (Obscured Text)
- Opens a dialog box to enter a password, where the input is hidden.
import pyautogui password = pyautogui.password('Enter your password:') print('Password entered (hidden for security).')