728x90
UrlDownloadToFile 디지털 폰트 적용하기
;폴더 생성
FileCreateDir, C:\Download
;다운로드 주소
Url = 티스토리에 LABDigital.ttf 파일 올린 후 다운로드 주소 복사
;다운받기
UrlDownloadToFile, %Url%, C:\Download\LABDigital.ttf
;폰트 파일이 존재하면 폰트뷰 창 닫기
IfExist, C:\Users\%A_UserName%\AppData\Local\Microsoft\Windows\Fonts\LABDigital.ttf
{
WinClose, ahk_class FontViewWClass
}
;폰트 파일이 없으면 폰트뷰 실행
IfNotExist, C:\Users\%A_UserName%\AppData\Local\Microsoft\Windows\Fonts\LABDigital.ttf
{
Run, C:\Download\LABDigital.ttf
WinActivate, ahk_class FontViewWClass
Sleep, 500
ControlSend,,{I},ahk_class FontViewWClass
}
;========================================
;폰트 적용 후 다운받은 폰트 파일 삭제
FileDelete, C:\Download\LABDigital.ttf
728x90
'AutoHotKey' 카테고리의 다른 글
AutoHotkey_v1.1.36.02 - 새 버전 설치시 에러 발생 대처 (0) | 2023.10.02 |
---|---|
한방에_v1 - 자작 아닌 짜집기 20231007 (0) | 2023.10.02 |
[GUI] Checked groupbox (0) | 2023.09.17 |
하드 디스크 드라이브(HDD) 숨기기 (0) | 2023.09.10 |
[GUI] PING 테스트 (0) | 2023.09.03 |