How to create a global hotkey on Windows with 3 arguments?
Just like Ctl, Alt + delete I want to write a program, which uses global hotkeys with 3 or more arguments in python. The assigned function should only perform when I press all three keys on my keyboard. For example alt, windows and F3. win32con.VK_F3, win32con.MOD_WIN, win32con.VK_F5 This is the current program I want to run, however its output is: Traceback (most recent call last): File "C:\Python32\Syntax\hot keys\hotkeys2.py", line 41, in <module> for id, (vk, modifiers) in HOTKEYS.items (): ValueError: too many values to unpack (expected 2) The Program: import os import sys import ctypes