Dizzy Posted September 11, 2018 Share Posted September 11, 2018 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 More sharing options...
Developers Jos Posted September 11, 2018 Developers Share Posted September 11, 2018 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 More sharing options...
FrancescoDiMuro Posted September 11, 2018 Share Posted September 11, 2018 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 coffeeturtle 1 Click here to see my signature: Spoiler ALWAYS GOOD TO READ: Forum Rules Forum Etiquette Link to comment Share on other sites More sharing options...
Dizzy Posted September 11, 2018 Author Share Posted September 11, 2018 (edited) Hi Jos, you're right -- sorry! @FrancescoDiMuro: Yes, that's what i was looking for. Thanks Edited September 11, 2018 by Dizzy Link to comment Share on other sites More sharing options...
FrancescoDiMuro Posted September 11, 2018 Share Posted September 11, 2018 @Dizzy Happy to have helped Click here to see my signature: Spoiler ALWAYS GOOD TO READ: Forum Rules Forum Etiquette Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now