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

+ Recent posts