Jump to content

Icons in my script


Recommended Posts

Hi

I Use 3 icons in my AutoIT Script and I Would these icons as a part of my Exe

How to make Built-in Icons, and how to change in my self executable script file ?

X.ICO + Y.ICO + Z.ICO

= X.exe with 3 Icons

How to do this ? and switch icons in my script.

Thank for replies.

Link to comment
Share on other sites

In Scite press Ctrl+F1 and go to Extra utilities/Autoit3Wrapper

#AutoIt3Wrapper_Res_Icon_Add=C:\Program Files\AutoIt3\Icons\au3.ico

#AutoIt3Wrapper_Res_Icon_Add=C:\Program Files\AutoIt3\Icons\filetype1.ico

#AutoIt3Wrapper_Res_Icon_Add=C:\Program Files\AutoIt3\Icons\filetype2.ico

#AutoIt3Wrapper_Res_Icon_Add=C:\Program Files\AutoIt3\Icons\filetype3.ico

#AutoIt3Wrapper_Res_Icon_Add=C:\Program Files\AutoIt3\Icons\filetype-blank.ico

#include <GUIConstants.au3>

GUICreate("Demo resource ICO's")

$h_Button1 = GUICtrlCreateButton("my picture button", 10, 20, 40, 40, $BS_ICON)

GUISetState()

For $x = 0 To 7

   $rc = TraySetIcon(@ScriptFullPath, -$x)

   $rc2 = GUICtrlSetImage($h_Button1, @ScriptFullPath, -$x)

   If $x < 3 Then

      TrayTip("Default ico:" & $x, "TraySetIcon rc:" & $rc & @LF & "GUICtrlSetImage rc:" & $rc2, 3)

   Else

      TrayTip("New ico:" & $x, "TraySetIcon rc:" & $rc & @LF & "GUICtrlSetImage rc:" & $rc2, 3)

   EndIf

   Sleep(2000)

Next

GUIDelete()
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...