Search the Community
Showing results for tags 'contextmenu'.
-
Hello everybody (and sorry for my bad english) I try to get the position of a contextmenu (GUICtrlCreateContextMenu) on a TreeView, with ControlGetPos, but i can't. Someone can help me ? Thank you :) PS: I need the position to select item wtih rightclick before read the text of the item, because rightclick don't select item (only leftclick).
- 1 reply
-
- gui
- contextmenu
-
(and 1 more)
Tagged with:
-
AutoIt Radio Player v0.0.0.8 Update of 30 apr 2016
Synapsee posted a topic in AutoIt Example Scripts
AutoIt Radio Player Last : v0.0.0.8 Tested only on W7X64 Changelog : ==========> AutoIt Radio Player v0.0.0.8.zip <========== Personal Message : This is my first script posted. Any comment are welcome. Give me your best web radio i will try add them ! Install/Use : Add a station : Unsolved problem : When the coverGUI go outside the monitor and comeback inside, a part of current cover disapear : I have no idea how fix that TODO : Make coverGUI mouse resizable (while script running) : any idea are welcome- 24 replies
-
Hello everybody! Just to demonstrate how to use a combobox like a context menu, maybe that's not very helpful... Sample: Download: ComboBoxContextMenu.au3 Hope you enjoy! Regards, João Carlos.
-
So, if someone would explain to me why the ContextMenu shows on "Button 2" when it is set for "Button 1" ??? #include <GUIConstantsEx.au3> $MyGUI = GUICreate("My TEST GUI", 220, 125) $Button1 = GUICtrlCreateButton("Button 1", 10, 10, 200, 25) $ContextMenu = GUICtrlCreateContextMenu ($Button1) $MenuItem1 = GUICtrlCreateMenuItem("Item 1", $ContextMenu) $MenuItem2 = GUICtrlCreateMenuItem("Item 2", $ContextMenu) $Label = GUICtrlCreateLabel ("", 10, 55, 200, 20) $Button2 = GUICtrlCreateButton("Button 2 - Show Menu on Button 1", 10, 90, 200, 25) GUISetState() While 1 $msg