Custom Query
Results (55 - 57 of 3828)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#174 | Fixed | au3.api for v3.2.10.0 is missing RunAsSet | Jos | JayMan |
Description |
The au3.api files in the 3.2.10.0 definitions have the RunAs & RunAsWait functions rather than the RunAsSet functions. |
|||
#177 | Fixed | PixelGetColor third param not accepted (AutoIt error) | Jpm | Saunders <admin@…> |
Description |
Perhaps the modification was not included when the latest beta was compiled because I get an AutoIt error whenever I try to use the new third parameter in the PixelGetColor function. ConsoleWrite(@AutoItVersion & @CRLF) $hWnd = WinGetHandle('') If @error Then Exit PixelGetColor(100, 100, $hWnd) Console output: 3.2.11.2 C:\Documents and Settings\Rob\Local Settings\Temp\tmp.au3 (5) : ==> Incorrect number of parameters in function call.: PixelGetColor(100, 100, $hWnd) ^ ERROR |
|||
#178 | Fixed | GUIRegisterMsg: change of behaviour in WM_NCHITTEST message handler | Jpm | rover |
Description |
WM_NCHITTEST message handler for moving gui form by client area with mouse not working in beta 3.2.11.1 and up was working in 3.2.10.0 Is this related to Ticket #169? tested on 2 machines running XP SP2 EN X86 AutoIt: prod. v3.2.10.0 beta v3.2.11.1 to v3.2.11.3 this alternative works - WM_NCLBUTTONDOWN http://quadryders.com/phpcc/snippet.php?sid=46 http://www.autoitscript.com/forum/index.php?showtopic=63323 Is this usage now deprecated? Global Const $WM_NCHITTEST = 0x0084 Global Const $HTCAPTION = 2, $HTCLIENT = 1 $hGui = GUICreate("Test", 300, 200, -1, -1) GUIRegisterMsg($WM_NCHITTEST, "WM_NCHITTEST") GUISetState() Do
Until $msg = -3 Func WM_NCHITTEST($hWnd, $Msg, $wParam, $lParam)
EndFunc ; or ;Func WM_NCHITTEST($hWnd, $iMsg, $iwParam, $ilParam)
;EndFunc ;==>WM_NCHITTEST |