Here it is without the download Link... sorry about that I am new to the forum.
Local $UIA_winApp = _UIA_getObjectByFindAll($UIA_oDesktop, "Title:=Generic Windows App;controltype:=UIA_WindowControlTypeId;class:=ApplicationFrameWindow", $treescope_subtree)
Local $UIA_ListBox = _UIA_getObjectByFindAll($UIA_opt, "Title:=;controltype:=UIA_ListControlTypeId;class:=ListView", $treescope_subtree)
Local $UIA_listItem = _UIA_getObjectByFindAll($UIA_opt, "Title:=Generic List Item;controltype:=UIA_TextControlTypeId;class:=TextBlock", $treescope_subtree)
if isobj( $UIA_listItem) Then
consolewrite ( "Choosing Item... " & @CRLF )
Else
consolewrite ( "Error Item not found " )
exit
EndIf
_UIA_Action ( $UIA_listItem , "setfocus" )
_UIA_Action ( $UIA_listItem , "click" )