Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (76 - 78 of 3931)

Ticket Resolution Summary Owner Reporter
#3990 Completed _IsPressed() add "indicate whether the key has been pressed since the last query" Jpm argumentum
Description
Func _IsPressed($sHexKey, $vDLL = "user32.dll")
    Local $aCall = DllCall($vDLL, "short", "GetAsyncKeyState", "int", "0x" & $sHexKey)
    If @error Then Return SetError(@error, @extended, False)
    Return SetError(0, $aCall[0] = 0xFFFF8000, BitAND($aCall[0], 0x8000) <> 0)
EndFunc   ;==>_IsPressed

The change adds some extra information that I found was needed using a Bluetooth headset. The chatter about its use is at https://www.autoitscript.com/forum/topic/211304-getasynckeystate-_ispressed-vs-the-bluetooth-headset-now-fight/ . Does not brake prior script code.

#3989 Wont Fix SplashOff() not being parsed correctly by SyntaxCheck Prod and Tidy GUIDTracker
Description

I have noticed that both the Syntax Checker and Tidy programs used in SciTE don't parse the SplashOff command correctly (my understanding anyway). The Help text lists command as requiring trailing parenthesis ie. 'SplashOff ()', however, both Syntax Checker and Tidy ignore the trailing parenthesis. Scripts both tidy and compile successfully without throwing an error but leaving off the trailing parenthesis with the SplashOff command seems to break the script - see my attached example.

#3988 Completed _WinAPI_GetSystemPowerStatus does not provide full stats on Win 10 Jpm Nine
Description

Starting from Win10, the forth byte of the structure returned by GetSystemPowerStatus function is now use to detect SystemStatusFlag (0 / 1).

See : https://learn.microsoft.com/en-us/windows/win32/api/winbase/ns-winbase-system_power_status

Array returned from _WinAPI_GetSystemPowerStatus should be adjusted accordingly.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.