Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (292 - 294 of 3897)

Ticket Resolution Summary Owner Reporter
#528 Rejected Native Control Identification and Property Retrieval using Active Acessibility zfisherdrums
Description

<disclaimer> I request this understanding that it may be outside of AutoIT's intended purpose and that implementation may be prohibitively lengthy/difficult. But, "you have not because you ask not." </disclaimer>

Control ID Descriptions should include options for accName, accRole, child index, and an optional Root handle to aid in expediting tree traversing.

Examples:

; Click on the VMWare Server list item 
$msaaControl = ControlClick( "Add or Remove Programs", "", "[NAME:VMWare Server;ROLE:listitem;ROOT:0x00050496]" )
; Click on all list items
$count = ControlCommand( "Add or Remove Programs", "", "[NAME:Add or Remove Programs]", "GetChildrenCount", "" )
For $i = 1 to $count
   $role = ControlCommand( "Add or Remove Programs", "", "[NAME:Add or Remove Programs]", "GetRole", $i )
   if ( $role = "listitem" ) then
      ControlClick( "Add or Remove Programs", "", "NAME:Add or Remove Programs];CHILD:" & $i & "]" )
   endif
Next
#530 No Bug HotKeySet ignores optional parameters danerjones@…
Description

After executing this function:

HotKeySet("{ESC}", "QuitApp")

Func QuitApp($Quick = False)
	
	If $Quick Then
		Exit
	EndIf
	
	_FinishUp()
	Exit
EndFunc

The following Error was returned.

>Running:(3.2.12.1):C:\Program Files\AutoIt3\autoit3.exe "C:\Script.au3"    
C:\Script.au3 (457) : ==> Variable used without being declared.:
If $Quick Then
If ^ ERROR

It appears that when {ESC} is pressed, the optional parameter is not properly defined causing the error.

This issue only occurs when the function is triggered from HotKeySet and an optional parameter is declared.

I have rewritten the function to work around the issue for the time being.

HotKeySet("{ESC}", "QuitApp")

Func QuitApp($Quick = False)
	
	If IsDeclared("Quick") Then 
		If $Quick Then Exit
	EndIf
	
	_FinishUp()
	Exit
EndFunc
#532 Rejected Adding Icons to Tray Menu playzoneuk
Description

Is there a possibility of having the ability to add icons to Tray Menus in a future release?

Sorry if this has been requested before I’m still a newbie when it comes to AutoIT.

Note: See TracQuery for help on using queries.