Jump to content

Recommended Posts

Posted

I am working on an automation project and I am having issues finding documentation on selecting an item from a context menu, or a menu that appears upon a right click. I tried using the Send("{DOWN}") command as a workaround but it's not very redundant. Essentially I need to search the context menu for the string "Abort Text" and click that option. The class of the context menu is showing as CLASS:#32768. I have uploaded a portion of the context menu. If it helps I have the handle of the treeview where the first item is right clicked in order to make the treeview appear.

 

 

scapa.JPG

Posted
$treeItem = _GUICtrlTreeView_FindItem($treeHndl, "Stop Test")
_GUICtrlTreeView_SelectItem ($treeHndl, $treeItem, 1)

Will this do what you want?

UHJvZmVzc2lvbmFsIENvbXB1dGVyZXI=

Posted

I am afraid that doesn't work. When I output $treeItem to a msgbox it returns 0 as in the item was not found. I tried the handle of the treeview itself and the handle of the context menu. 

Posted

After looking around more it seems this is a little more complicated than one would think. I suggest looking at the code snippet in this thread:

 

UHJvZmVzc2lvbmFsIENvbXB1dGVyZXI=

  • 5 months later...

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
×
×
  • Create New...