Forum Discussion
RajeshVV
9 years agoContributor
StripPopupMenu can have objects which can be traversed, or sometimes the "Pop-up Menu" is displayed outside the application hierarchy which can be handled and can perform click operation by descriptive programming as follows
Set objPopupMenu = Aliases.ApplicationWindow("xyz").StipPopupMenu
Call ojPopupMenu.ClickItem("RequiredItem")
or
PropsArray = Array("ObjectType", "VisibleOnScreen")
'these can be a set of relevant properties which are needed to identify the object
ValuesArray = Array("Popup", TRUE)
'Associated Property Values to identify the correct object
Set objPopupMenu = Sys.ApplicationWindow("xyz").FindChild(PropsArray, ValuesArray, 50, TRUE)
Call ojPopupMenu.ClickItem("RequiredItem")-Rajesh V V