Custom Query (3922 matches)
Results (295 - 297 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #534 | No Bug | Binary() is ****ed up | ||
| Description |
heres some example code $nNum = 256 consolewrite(binary($nNum) & @lf) consolewrite(binary(256) & @lf) the first time it returns 0x000100000000000000 The second return is 0x00010000 I cant use my File transfer utility if this is not fixed. Thanks in advance! |
|||
| #535 | Rejected | don't pause the script when the tray menu is open or the gui title bar is right clicked | ||
| Description |
Clicking on the script's tray menu or a GUI window title bar pauses the script. This is very bad for those scripts that need to continuously execute some kind of monitoring operations. Some good reasons to NOT make the script pauses are well explained in the following thread: http://www.autoitscript.com/forum/index.php?showtopic=62152&hl=more++dllcallbackregister where it is suggested a workaround. Nevertheless, it seems reasonable that the requested feature will be natively supported in AutoIt. |
|||
| #536 | Wont Fix | ControlGetFocus() prevents double-clicks | ||
| Description |
It seems that polling which control has the focus with ControlGetFocus() resets somehow the mouse click counter/timer... Here is a code sample showing this: While 1
$CurrentWin = WinGetHandle("[Active]")
$CurrentControl = ControlGetFocus ($CurrentWin)
Sleep(50)
Wend
Double-clicks are not detected anymore when this code is running. |
|||
