[AHK] SplitPath
# SplitPath http://www.autohotkey.com/docs/commands/SplitPath.htm 파일명 또는 URL 에서 이름, 디렉토리, 확장자, 드리아브로 분리합니다. SplitPath, InputVar [, OutFileName, OutDir, OutExtension, OutNameNoExt, OutDrive] # 예제 FullFileName = C:\My Documents\Address List.txt ; To fetch only the bare filename from the above: SplitPath, FullFileName, name ; To fetch only its directory: SplitPath, FullFileName,, dir ; To fetch all..
2015. 4. 8.
[AHK] 한영전환 없이
가능한 영어 단어를 모두 핫스트링으로 등록하면, 한영전화 키를 누를 필요없이 해당 영어 단어를 키순서대로 입력하면 자동으로 변환되도록 합니다. 한영 상태를 확인합니다.IME_CHECK(WinTitle){ WinGet,hWnd_abs,ID,%WinTitle% Return Send_ImeControl(ImmGetDefaultIMEWnd(hWnd_abs),0x005,"")} Send_ImeControl(DefaultIMEWnd, wParam, lParam){ DetectSave := A_DetectHiddenWindows DetectHiddenWindows,ON SendMessage 0x283, wParam,lParam,,ahk_id %DefaultIMEWnd% if (DetectSave A_DetectHid..
2015. 4. 8.