Hi, 1st, sorry for my english . Well I would like to know how I can do to hotokeyset the altgr key. I've tried Func _IsPressed($hexKey) Local $aR, $bO $hexKey = '0x' & $hexKey $aR = DllCall("user32", "int", "GetAsyncKeyState", "int", $hexKey) If Not @error And BitAND($aR[0], 0x8000) = 0x8000 Then $bO = 1 Else $bO = 0 EndIf Return $bO EndFunc Global $Paused while 1 If _IsPressed('A5') = 1 Then myfunc() (I also have tried alt+ctrl) Sleep(10) Wend but it wo