#Function/Features:
- Open the hidden menu
- Open the Task Manager
- Open the Task View
- Take screenshot
- Take Snip
- Open setting
- Close this app
- Add a new virtual desktop
# GITHUB: PART - 3
Instalation
- pip install PyAutoGUI
# Here are the few examples
#Feature: Open the hidden menu
→ Add in Main --> Nested_elif
- elif "hidden menu" in query:
- # Win+X: Open the hidden menu
- pyautogui.hotkey('winleft', 'x')
#Feature: Open the Task Manager
→ Add in Main --> Nested_elif
- elif "task manager" in query:
- # Ctrl+Shift+Esc: Open the Task Manager
- pyautogui.hotkey('ctrl', 'shift', 'esc')
#Feature: Open the Task View
→ Add in Main --> Nested_elif
- elif "task view" in query:
- # Win+Tab: Open the Task view
- pyautogui.hotkey('winleft', 'tab')
#Feature:Take screenshot
→ Add in Main --> Nested_elif
elif "take screenshot" in query:
# win+perscr
pyautogui.hotkey('winleft', 'prtscr')
speak("done")
# Take screenshot save in Given location
'''
elif "take screenshot" in query:
img = pyautogui.screenshot()
img.save("D:/screenshot_1.png") # file mane and location
speak("Done")
'''
#Feature:Take screenshot
→ Add in Main --> Nested_elif
- elif "snip" in query:
- pyautogui.hotkey('winleft', 'shift', 's')
#Feature:close this app
→ Add in Main --> Nested_elif
- elif "close the app" in query:
- pyautogui.hotkey('alt','f4')
#Feature:Open setting
→ Add in Main --> Nested_elif
- elif "setting" in query:
- # win+i = open setting
- pyautogui.hotkey('winleft', 'i')
#Feature: Add a new virtual desktop
→ Add in Main --> Nested_elif
- elif "new virtual desktop" in query:
- # Win+Ctrl+D: Add a new virtual desktop
- pyautogui.hotkey('winleft', 'ctrl', 'd')
SIR PLZ UPLOAD THE MATERIAL AND CODE OF GUI I AM FACING PROBLEM IN THAT ONLY PART 4 MAY GUI MATERIAL AND CODES DALANA
ok i will make it soon!
Sir Please Make Video Fast And Upload
is part 5 code have all code till that
can that code make fully funtionable program