Hay ist es möglich mit einer Inputbox ein Hotkey zusetzen?
HotKeySet("{$Input1}", "_Test")
mfg
HotKeySet("{$Input1}", "_Test")
mfg
$input = InputBox("", "")
HotKeySet($input, "_go")
Func _go()
MsgBox(0,0,0)
EndFunc
While 1
Sleep(1000)
WEnd
leider kommt da ein error wenn ich den code einfügeQuote:
HotKeySet("{" & $input & "}", "start")
Soll ich dir zeigen, wie mans richtig macht? :facepalm:Quote:
-.- soll ich dir auch zeigen, wie du aufs töpfchen gehst??
PHP Code:$input = InputBox("","Bitte hotkey eingeben")
HotKeySet("{" & $input & "}", "start")
Func start()
;;;
EndFunc
$input = InputBox("","Bitte hotkey eingeben")
HotKeySet("{" & $input & "}", "start")
While Sleep(50)
WEnd
Func start()
;;;
EndFunc