Jump to content

Mouse click by screen percentage.


Recommended Posts

Hi,

I was hoping someone could point me in the right direction. I am trying to automate some testing and whilst the majority of it can be done through key strokes there are sometimes that a mouse click is the only solution.

Could anyone tell me if there is a way to use percentages of the screen instead of coordinates (The testing will be run on different machines with varying screen resolutions / aspects), and also display the position of the mouse in a percentage of the screen.

If I am being completely stupid, please tell me also :D

Thanks

James

Link to comment
Share on other sites

Have a look in the help file to

@DesktopWidth
@DesktopHeight
MouseGetPos(0)
MouseGetPos(1)

and do some math to get the percentage.

Br,

UEZ

Edited by UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

Hi, was bored, so i figured i should help...

Local $Loop
Do
Sleep(50)
$Width = @DesktopWidth
$Height = @DesktopHeight
$X = MouseGetPos(0) / $Width * 100
$Y =  MouseGetPos(1) / $Height * 100
$Xleft = StringLeft($X, 4)
$Yleft = StringLeft($Y, 4)
ToolTip('X = '&$Xleft&'%' & ' Y = '&$Yleft&'%', 500, 0, 'Coords')
;TrayTip('Coords', 'X = '&$Xleft&'%' & ' Y = '&$Yleft&'%', 0)
Until $Loop = 1

EDIT: oh well..

Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

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...