Kashgari Posted September 27, 2009 Share Posted September 27, 2009 Is there any script here, which shows current mouse position and updates when I move the mouse Link to comment Share on other sites More sharing options...
Developers Jos Posted September 27, 2009 Developers Share Posted September 27, 2009 Create one and use MouseGetPos() Jos 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...
Kashgari Posted September 27, 2009 Author Share Posted September 27, 2009 Create one and use MouseGetPos()JosI have read about MouseGetPos(), I want a GUI script which always shows current mouse position, For the time being I am not able to create one, I wonder is there anyone exist? Link to comment Share on other sites More sharing options...
Mat Posted September 27, 2009 Share Posted September 27, 2009 heres some help to get started! This is the hardest part of the script you asked for, taking me all of 10 seconds to write. HotKeySet ("!6", "_Exit") While 1 $aPos = MouseGetPos () Tooltip ($aPos[0] & ", " & $aPos[1]) Sleep (10) WEnd Func _Exit () Exit EndFunc ; ==> _Exit Mat AutoIt Project Listing Link to comment Share on other sites More sharing options...
power1power1 Posted November 13, 2013 Share Posted November 13, 2013 (edited) Hello, This simple script works fine. I have Windows 8.1 with screen resolution of 1920x1080 and scaling level set at 132%. The reported coordinates at the bottom right corner is 1440x810. I think Firefox also reports that as the screen resolution. Any comments? Thanks! Edited November 13, 2013 by power1power1 Link to comment Share on other sites More sharing options...
Shrapnel Posted November 13, 2013 Share Posted November 13, 2013 Necro post! Link to comment Share on other sites More sharing options...
power1power1 Posted November 13, 2013 Share Posted November 13, 2013 Only technical comments, please! Link to comment Share on other sites More sharing options...
water Posted November 13, 2013 Share Posted November 13, 2013 (edited) Shrapnel wants to tell you that you shouldn't post in a thread that is more than 3 4 years old. And your Windows 8 related subject is completely unrelated to the OP. I suggest to open a new thread to get better "technical" replies Edited November 13, 2013 by water My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
power1power1 Posted November 13, 2013 Share Posted November 13, 2013 Very good water, a new post will be created. 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