메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

Autoit 아이콘 설정

데브카페
Devcafe (토론 | 기여)님의 2025년 7월 3일 (목) 20:32 판 (새 문서: ==Autoit 아이콘 설정== * AutoIt script 앞 부분에 <source lang=autoit> #AutoIt3Wrapper_Icon = ico 파일명 </source> 을 넣어주면 compile된 exe 파일의 아이콘지정 ==트레이 아이콘== <source lang=autoit> $gui = GUICreate(@ScriptName, 1, 1, -100, -100) GUISetIcon(@WindowsDir & "\System32\shell32.dll", 28) GUISetState() TraySetIcon(@WindowsDir & "\System32\shell32.dll", 28) </source>)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

Autoit 아이콘 설정

  • AutoIt script 앞 부분에
#AutoIt3Wrapper_Icon = ico 파일명

을 넣어주면 compile된 exe 파일의 아이콘지정


트레이 아이콘

$gui = GUICreate(@ScriptName, 1, 1, -100, -100)
GUISetIcon(@WindowsDir & "\System32\shell32.dll", 28)
GUISetState()
TraySetIcon(@WindowsDir & "\System32\shell32.dll", 28)

Comments