How can I create a tooltip like this one (created in AutoIt) anywhere on the screen?
I am looking for an hour and found nothing really.
It’s a normal tooltip like trayicons’ tooltips, just can be placed anywhere.
Regards

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Why does it matter whether it is Windows Forms, ASP .NET, etc? Because it probably affects your choices.
If it is a Windows Forms application you could create your own class that inherits from Windows.Forms.Form, set some properties and then use that.
You can use it like this:
Instead of closing you could reduce the form’s opacity until it disappears then close it for a nicer effect, assuming you want a duration at all.
You could also play around with the transparency colour and use a background image, etc to have shaped tooltips.
EDIT:
Here is a quick demonstration of how the CloseAfter method could fade out the tooltip form.