Custom Query
Results (154 - 156 of 3883)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3805 | Fixed | Missing letter t at the end of $tagRID_DEVICE_INFO_KEYBOARD definition | Jpm | Nine |
Description |
In file WinAPISys.au3. Currently it is : Global Const $tagRID_DEVICE_INFO_KEYBOARD = 'struct;dword KbType;dword KbSubType;dword KeyboardMode;dword NumberOfFunctionKeys;dword NumberOfIndicators;dword NumberOfKeysTotal;endstruc' Should be : Global Const $tagRID_DEVICE_INFO_KEYBOARD = 'struct;dword KbType;dword KbSubType;dword KeyboardMode;dword NumberOfFunctionKeys;dword NumberOfIndicators;dword NumberOfKeysTotal;endstruct' |
|||
#3804 | Completed | _GUICtrlMenu_CreateMenu() example | Jpm | argumentum |
Description |
_GUICtrlMenu_CreateMenu() can be a blocking function, or not but, to discover that it can be a non-blocking function one has to explore the styles. In the help forum, in "Menu Pause Script"https://www.autoitscript.com/forum/topic/205044-menu-pause-script/?tab=comments#comment-1474845, I posted a example script that better demonstrates the effect of some of the styles. I'd like to replace the example from the help manual with the one on the link above. |
|||
#3803 | No Bug | ControlClick unaffected by MouseClickDownDelay | kianisan@… | |
Description |
I recently opened up a post discussing how the "MouseClickDelay" option would work on both MouseClick and ControlClick but MouseClickDownDelay would only work on MouseClick and not ControlClick. I have tested the following syntax: Opt("MouseClickDelay", "100") ;This works with MouseClick and ControlClick Opt("MouseClickDownDelay", "100") ;This works with MouseClick but does nothing with ControlClick AutoItSetOption ("MouseClickDelay","100") ;Same as above AutoItSetOption ("MouseClickDownDelay","100") ;Same as above (I tested without the "" marks surrounding the 100, same result) I tested this on the latest version 3.3.15.2 and 3.3.14.2 To replicate this bug, feel free to use the code written by Nine: Opt("MouseClickDownDelay", 250) Local $hTimer = TimerInit() ControlClick("", "", "", "left", 1, 100, 100) ConsoleWrite (TimerDiff($hTimer) & @CRLF) $hTimer = TimerInit() MouseClick("left", 200, 200, 1, 0) ConsoleWrite (TimerDiff($hTimer) & @CRLF) Opt("MouseClickDownDelay", 10) Opt("MouseClickDelay", 250) $hTimer = TimerInit() ControlClick("", "", "", "left", 2, 100, 100) ConsoleWrite (TimerDiff($hTimer) & @CRLF) $hTimer = TimerInit() MouseClick("left", 200, 200, 2, 0) ConsoleWrite (TimerDiff($hTimer) & @CRLF) |