You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to run or debug a script Scite throws the error: 'C:\Program' is not recognized as an internal or external command, operable program or batch file.
It can be fixed by changing line 14 in ahk.properties from this:
AutoHotkey=$(AutoHotkeyDir)\AutoHotkey.exe
to this:
AutoHotkey=$(AutoHotkeyDir)\v2\AutoHotkey.exe
However, the ability to choose AHK V1 as a platform seems to be broken and running a V2 script does not run even with
#Requires AutoHotkey v1.0
The text was updated successfully, but these errors were encountered:
I just ran into this problem and solved it after I discovered I had an environment variable SCITE_USERHOME set to another folder. Removing it seems to have cleared things up for me.
Edit: Wrote too soon, V2 is OK but I had to create a symlink for the v1 exe using PowerShell. This will need adjusting depending on the version installed and needs to be run as admin: New-Item -ItemType SymbolicLink -Path 'C:\Program Files\AutoHotkey\AutoHotKey.exe' -Target v1.1.37.01\AutoHotkeyU64.exe
When trying to run or debug a script Scite throws the error:
'C:\Program' is not recognized as an internal or external command, operable program or batch file.
It can be fixed by changing line 14 in ahk.properties from this:
to this:
However, the ability to choose AHK V1 as a platform seems to be broken and running a V2 script does not run even with
#Requires AutoHotkey v1.0
The text was updated successfully, but these errors were encountered: