Jump to content

How to see the name of a Icon?


 Share

Recommended Posts

I have tryed the "Icon Selector" script and found some icons I wanna use, but in "Icon Selector" all icons is with numbers, no names, so how can I see what the icons names is?

Thank you :lmao:

Ps. What is the code for the gui box to remove the "x" and the buttons in the Menu line? (I have tryed $WS_BORDER)

Edited by Mr. Zero
Link to comment
Share on other sites

Ps. What is the code for the gui box to remove the "x" and the buttons in the Menu line? (I have tryed $WS_BORDER)

HI,

I dunno whether this is the way to do it, but ...

#include <GUIConstants.au3>

GUICreate("My GUI",Default, Default, Default, Default, $WS_EX_TRANSPARENT)  
GUISetState (@SW_SHOW)       ; will display an empty dialog box

; Run the GUI until the dialog is closed
While 1
    $msg = GUIGetMsg()
    
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend

So long,

Mega

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

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...