Custom Query (3933 matches)
Results (205 - 207 of 3933)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3804 | Completed | _GUICtrlMenu_CreateMenu() example | ||
| 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 | ||
| 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)
|
|||
| #3802 | No Bug | Window is not activated by a partial title | ||
| Description |
A C# / .Net 5.0 console project. using AutoIt;
using System;
using static AutoIt.AutoItX;
AutoItSetOption("WinTitleMatchMode", -2);
Console.WriteLine("Window activating...");
Console.WriteLine(
"by partial title: " +
WinActivate("OneNote")
);
Console.WriteLine(
"by full title: " +
WinActivate("title - OneNote")
);
Console.WriteLine(
"by handle: " +
WinActivate(new IntPtr(0x0000000000250D90))
);
The output: Window activating... by partial title: 0 by full title: 1 by handle: 1 Why the partial title activation doesn't work? |
|||
