Anonymous wrote:
How can I get rid of that tail thing while keeping it rounded at the corners
As far as I know its not possible, but below you will find a workaround

Anonymous wrote:
keep it at the corner of the screen no matter what resolution I have without the need to set position in numbers?
Insteat numbers you can use xTrayIcon yTrayIcon.
What is wrong with A_ScreenWidth + A_ScreenHight?
Anonymous wrote:
Is there a way that when I click on the tooltip no matter where it will disappear and take me to (D:\Download)?
Sure, I am not sure if this is the easiest way but it works
Code:
Sleep, 100
gui,+LastFound
guihwnd:=WinExist()
OnMessage(0x1C,"WM_ACTIVATEAPP") ;Will make Click possible
Restart:
hwndtt:=ToolTip(99,"Please click`n`n`n`n`n"
, "Welcome to ToolTip Control "
, "Q1 O1 T188 E10.10.50.40 BWhite FBlack I" . GetAssociatedIcon(A_ProgramFiles . "\Internet Explorer\iexplore.exe")
. " P99 XTrayIcon YTrayIcon")
Return
WM_ACTIVATEAPP(wParam, lParam, msg, hWnd){
global hwndtt,guihwnd
MouseGetPos,,,win
If (wParam=1 and hwnd=guihwnd and win=hwndtt)
Run % "explorer.exe /e`, /n`,D:\Downloads"
}
Possibly this workaround will help you since you want to display it in a corner, here the tail is shown outside screen:
Code:
Sleep, 100
gui,+LastFound
guihwnd:=WinExist()
OnMessage(0x1C,"WM_ACTIVATEAPP") ;Will make LinkClick and ToolTipClose possible
Restart:
hwndtt:=ToolTip(99,"Please click`n`n`n`n`n"
, "Welcome to ToolTip Control "
, "Q1 O1 T188 E10.10.50.40 BWhite FBlack I" . GetAssociatedIcon(A_ProgramFiles . "\Internet Explorer\iexplore.exe")
. " P99 X" A_ScreenWidth . " Y" . A_ScreenHeight+21)
Return
WM_ACTIVATEAPP(wParam, lParam, msg, hWnd){
global hwndtt,guihwnd
MouseGetPos,,,win
If (wParam=1 and hwnd=guihwnd and win=hwndtt)
Run % "explorer.exe /e`, /n`,D:\Downloads"
}
I have made a small fix to ToolTip() so you can now dispay a centered tail as well (you'll need to download the function again!)
Example:
Code:
Sleep, 100
gui,+LastFound
guihwnd:=WinExist()
OnMessage(0x1C,"WM_ACTIVATEAPP") ;Will make LinkClick and ToolTipClose possible
Restart:
hwndtt:=ToolTip(99,"Please click`n`n`n`n`n"
, "Welcome to ToolTip Control "
, "Q1 O1 T188 E10.10.50.40 J1 BWhite FBlack I" . GetAssociatedIcon(A_ProgramFiles . "\Internet Explorer\iexplore.exe")
. " P99 X" A_ScreenWidth/2 . " Y" . A_ScreenHeight)
Return
WM_ACTIVATEAPP(wParam, lParam, msg, hWnd){
global hwndtt,guihwnd
MouseGetPos,,,win
If (wParam=1 and hwnd=guihwnd and win=hwndtt)
Run % "explorer.exe /e`, /n`,D:\Downloads"
}