﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3778	Tooltip does not reset the position correctly	Dan_555	Jon	"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)
}}}

"	Bug	closed	3.3.15.4	AutoIt	3.3.14.5	None	Fixed		
