Apzo Posted April 4, 2010 Share Posted April 4, 2010 Hello I just want to replace a simple button by an image. Easy with GuiCtrlCreateButton and GUICtrlSetImage , but how to get rid of the button borders ? More, I have to click on the button part : doing so on the image part -inside the button- does nothing. Then I tried with GUICtrlCreateIcon. It shows my icon (no borders, great !) but impossible to register a message with it. So is it possible to have a nice button (bmp or ico) ? Thanks in advance Apzo. All the pop3 functions.Rsync your files on your USB key (or anywhere else) Link to comment Share on other sites More sharing options...
JohnOne Posted April 4, 2010 Share Posted April 4, 2010 (edited) Hmm I was pretty certain you could register a msg of any control on a gui, seems I was wrong again. Have you tried GUICtrlCreatePic() see if you can use that. EDIT: I've just used an icon and registered it msg in a gui, perhaps some other part of yopr code is failing. Edited April 4, 2010 by JohnOne AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted April 5, 2010 Moderators Share Posted April 5, 2010 Apzo,I have found Malkey's UDF here to be very useful when I want to register a click on a certain part of the GUI (like an image) without using a specific control. It was designed to use different parts of a larger background image as separate "buttons", but it is easy to extract the code to react to the area covered by your smaller image.Do not be put off by all the GDI drawing code - that is just to give a graphic to show the areas you can click on. If you have a rectangular image, all you really need is the _WinAPI_PtInRectEx function.Give it a go and come back if you have difficulties. M23 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
Tvern Posted April 5, 2010 Share Posted April 5, 2010 Please supply some code when asking for help. There is no need to use GuiCtrlCreateButton() if you don't want the button border. Both GUICtrlCreatePic() and GUICtrlCreateIcon() set GUIGetMsg() when clicked by default. (or GuiCtrlSetOnEvent()) If you are not using the default style, then specify the $SS_NOTIFY style. Link to comment Share on other sites More sharing options...
Yashied Posted April 5, 2010 Share Posted April 5, 2010 Simple way. #Include <WinAPI.au3> #Include <WindowsConstants.au3> $Background = _WinAPI_GetSysColor($COLOR_3DFACE) $Background = BitOR(BitAND($Background, 0x00FF00), BitShift(BitAND($Background, 0x0000FF), -16), BitShift(BitAND($Background, 0xFF0000), 16)) GUICreate('', 100, 100) $Icon = GUICtrlCreateIcon(@AutoItExe, 0, 34, 34, 32, 32) GUISetState() While 1 $Msg = GUIGetMsg() Switch $Msg Case -3 ExitLoop Case $Icon If PixelGetColor(MouseGetPos(0), MouseGetPos(1)) <> $Background Then ConsoleWrite('Click' & @CR) EndIf EndSwitch WEnd My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More... Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now