>"C:\Program Files\AutoHotkey\AutoHotkey.exe" /ErrorStdOut "C:\Users\Batuhan\Desktop\FirstKeybinder.ahk"
Egal was ist ins Script schreibe das kommt raus weiß einer ne Lösung? Ich benutze den SciTE4 Editor.
>"C:\Program Files\AutoHotkey\AutoHotkey.exe" /ErrorStdOut "C:\Users\Batuhan\Desktop\FirstKeybinder.ahk"
Egal was ist ins Script schreibe das kommt raus weiß einer ne Lösung? Ich benutze den SciTE4 Editor.
Das ist kein Fehler, das ist der Befehl, den SciTE ausführt. Somit wird dir dafür auch niemand eine Lösung sagen, das soll so sein. SciTE startet einfach die AutoHotkey.exe mit dem Switch ErrorStdOut und der Scriptdatei als Parameter.
Script lines most recently executed (oldest first). Press [F5] to refresh. The seconds elapsed between a line and the one after it is in parentheses to the right (if not 0). The bottommost line's elapsed time is the number of seconds since it executed.
---- C:\Users\Batuhan\Desktop\FirstKeybinder.ahk
003: Return (2.01)
Press [F5] to refresh.
Ok und was soll das sein? ich kriegs nicht gebacken...
//edit Also mein Keybinder geht nicht auf
Das bedeutet, dass der Keybinder nach 2,01 Sekunden ein "return" im Code ausgeführt hat (Zeile 3) und sich somit geschlossen hat. Wenn Du nicht den Source Code postest, dann kann man aber nur raten, was falsch ist.
#IfWinActive, GTA:SA:MP
t::
Suspend On
SendInput t
Hotkey, Enter, On
Hotkey, Escape, On
Hotkey, t, Off
return
NumpadEnter::
Enter::
Suspend Permit
Suspend Off
SendInput {Enter}
Hotkey, t, On
Hotkey, Enter, Off
Hotkey, Escape, Off
return
Escape::
Suspend Permit
Suspend Off
SendInput {Escape}
Hotkey, t, On
Hotkey, Enter, Off
Hotkey, Escape, Off
return
1::
SendInput tHallo {enter}
return
//edit Ich habe nicht viel, was ist den Falsch?
Bist Du Dir sicher, dass die erste Zeile so richtig ist? Wenn man die entfernt funktioniert der Rest in einem Texteditor normal.
Außerdem wüsste ich gerne, was genau der Keybinder machen soll.
#IfWinActive, GTA:SA:MP
#UseHook
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#IfWinActive, GTA:SA:MP ; Folgende Hotkeys Funktionieren nur wenn GTA SA:MP geöffnet ist
#UseHook
#SingleInstance, Force
t::
Suspend On
SendInput t
Hotkey, Enter, On
Hotkey, Escape, On
Hotkey, t, Off
return
NumpadEnter::
Enter::
Suspend Permit
Suspend Off
SendInput {Enter}
Hotkey, t, On
Hotkey, Enter, Off
Hotkey, Escape, Off
return
Escape::
Suspend Permit
Suspend Off
SendInput {Escape}
Hotkey, t, On
Hotkey, Enter, Off
Hotkey, Escape, Off
return
1::
SendInput tHallo {enter}
return
wenn du das so nimmst müsste es gehen