Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (166 - 168 of 3870)

Ticket Resolution Summary Owner Reporter
#3779 Fixed AutoIt crashes anonymous
Description

The newest version of AutoIt has problem controlling Internet Explorer through COM objects and crashes. I have to sometimes switch back to version 3.3.12.0, because in that version it doesn't crash. This is confirmed not only in my computer. Overall I use Internet Explorer only for simple tasks because controlling it is unpredictable. Another issue I have is Excel in which when there is low available memory the AutoIt crashes, but the Excel and the system still works.

#3778 Fixed Tooltip does not reset the position correctly Jon Dan_555
Description

Pixelsearch noticed, in this https://www.autoitscript.com/forum/topic/203602-tooltip-position-issue/ thread, that the Tooltip position does not reset correctly.

Working Code:

#include <AutoItConstants.au3>
ToolTip("This is tooltip 2", 45, 10, "", $TIP_NOICON, $TIP_CENTER)
Sleep(2000)

Next Two codeblocks show the Bug: #1:

#include <AutoItConstants.au3>

ToolTip("This is tooltip 1", 0, 0)
Sleep(2000)

ToolTip("")

ToolTip("This is tooltip 2", 45, 10, "", $TIP_NOICON, $TIP_CENTER)
Sleep(2000)

#2:

#include <AutoItConstants.au3>

ToolTip("This is tooltip 2", 45, 10, "", $TIP_NOICON, $TIP_CENTER)
Sleep(3000)

ToolTip("")

ToolTip("This is tooltip 1", 0, 0)
Sleep(3000)

And a workaround:

#include <AutoItConstants.au3>

ToolTip("This is tooltip 2", 45, 10, "", $TIP_NOICON, $TIP_CENTER)
Sleep(3000)

ToolTip("",0,0,"",0,$TIP_BALLOON)


ToolTip("This is tooltip 1", 1, 2)
Sleep(3000)
#3777 No Bug Au3Check Custom Includes seadoggie01
Description

Au3Check cares about what symbol is used in custom includes to #include files.

; Main.au3
#include <Test.au3>
#include <Test2.au3>
; Test.au3
#include "Test2.au3"
; Test2.au3
Global $__g_bGarbage
Note: See TracQuery for help on using queries.