Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (22 - 24 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Ticket Resolution Summary Owner Reporter
#27 Completed ControlClick with alternate mouse buttons (Like MouseClick's Primary, Secondary, Main & Menu) Saunders <admin@…>
Description

Copied from this post

I was just wondering if it would be possible to get the same alternate mouse buttons that MouseClick() uses (Primary, Secondary, Main, Menu) to work in ControlClick(). Like the following:

ControlClick('Calculator', '', 'Button1', 'secondary')

Instead of the following:

$sPrimary = 'left'
$sSecondary = 'right'
$iSwap = RegRead('HKCU\Control Panel\Mouse', 'SwapMouseButtons')
If $iSwap Then
  $sPrimary = 'right'
  $sSecondary = 'left'
EndIf
ControlClick('Calculator', '', 'Button1', $sSecondary)

I know the above works fine, but if this isn't too much of a task, it could certainly make some code shorter.

Thanks for reading.

Copied from this post

#28 Duplicate ControlGetPixel Hiyoal
Description

It would be great if you could make autoit capable of searching for pixels inside controls. It would help with background macro making.

Hiyoal :)

#33 No Bug _IsNumber() & IsInt() both incorrectly return true squirrely1
Description

XP SP2 EN x86

MsgBox(0,"Testing IsInt()",IsInt(Number("K")) & " - Should be: 0")
MsgBox(0,"Testing IsNumber()",IsNumber(Number("K")) & " - Should be: 0")
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Note: See TracQuery for help on using queries.