Jump to content

Text on mouse pointer - (Moved)


Dizzy
 Share

Recommended Posts

Hi,

i had lost track of the AutoIT topic for a while.
But i still have in mind that i once had a function where i could display the time, the mouse position, or other text directly at the mouse pointer. Where can i find the appropriate code? 

Thank you

Link to comment
Share on other sites

  • Developers

Moved to the appropriate forum, as the AutoIt Example Scripts forum very clearly states:

Quote

Share your cool AutoIt scripts, UDFs and applications with others.


Do not post general support questions here, instead use the AutoIt Help and Support forums.

Moderation Team

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

44 minutes ago, Dizzy said:

But i still have in mind that i once had a function where i could display the time, the mouse position, or other text directly at the mouse pointer. Where can i find the appropriate code? 

Something like this? :)

#include <Misc.au3>

While Not _IsPressed("1B")
    ToolTip("Mouse Pos. X: " & MouseGetPos()[0] & @CRLF & _
            "Mouse Pos. Y: " & MouseGetPos()[1] & @CRLF & _
            "Current Time: " & _NowDate() & " " & _NowTime())
            Sleep(100)
WEnd

 

Click here to see my signature:

Spoiler

ALWAYS GOOD TO READ:

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...