20230613 1748
REF
[1] https://stackoverflow.com/questions/24904945/command-prompt-error-c-program-is-not-recognized-as-an-internal-or-external-c '
[2] https://www.autohotkey.com/boards/viewtopic.php?t=99411 ,
[3] https://www.reddit.com/r/AutoHotkey/comments/138gqsi/scite4ahk_does_not_find_ahk_why/ ,
Scite4Autohotkey에서 코딩을 하고 실행을 하는데..
이런 에러가 나온다
>"C:\Program Files\AutoHotkey\AutoHotkey.exe" /ErrorStdOut "C:\Users\KDBNY\Downloads\AH_mouse_move.ahk" 'C:\Program' is not recognized as an internal or external command, operable program or batch file. >Exit code: 1 Time: 0.183 |
아마 autohotkey 실행 경로가 잘못된 것 같은데..
쌍따옴표를 쓰라는 게 있고 [1]
설정을 바꿔보라는 게 있고 [2]
이렇게 하니 되네 [3] Internal paths are in ahk.properties, copy relevant lines from there to SCITEUser.properties, then modify as needed.
1, "ahk.properties"열고
(경로)Scite4AutoHotkey > 옵션 > 열기 ahk.properties...
2. 아래 부분을 복사해서
# AutoHotkey path
AutoHotkeyDir=$(SciteDefaultHome)\..
AutoHotkey=$(AutoHotkeyDir)\AutoHotkey.exe
ahk.help.file=$(AutoHotkeyDir)\AutoHotkey.chm
ahk.compiler=$(AutoHotkeyDir)\Compiler\Ahk2Exe.exe
ahk.compiler.params=
3, "SciTEUser.properties"에 붙여 넣는다.
"AutoHotkey=" 다음의 경로를 AHK가 있는 곳으로 수정
4, 실행해보면 된다.
'[PA] 업무자동화 > [AH]Autohotkey' 카테고리의 다른 글
AH '1'을 '001'로 바꾸기 (0) | 2023.06.15 |
---|---|
AH Autohotkey Beginner Tutorial (0) | 2023.06.15 |
AH Auto-Execute Section (0) | 2023.06.14 |
AH 스렛드 세치기 Threads (0) | 2023.06.14 |
AH Debugging a Script (0) | 2023.06.13 |