Jump to content

What is Randclick


Recommended Posts

I have been slowly teaching myself autoit over the past couple years. Usually in short spurts, or untill my interest wanes.

I usually havea friend who sends me various code to learn from and helps me with these things, but he is out of town at the moment.

This time I have decided to learn about mouseclick movements, and came across something odd.

I understand the mouseclick and mousemove functions, but when looking through the code a friend sent me found this tidbit.

The code was written to move the mouse over a spot on the dekstop, right click to create a file and then left click to open that file.

My question pertains to a specific line of code, which I copied and pasted below.

RandClick("left", Round(300 * $x_screensize), Round(100 * $_screensize), 2, 2)

$x_screensize is equal to the length of your desktop

$y_screensize is equal to the height of your desktop

When I read through the code, randclick seems to have been used in every place where I would normally use a mouseclick function.

Why is this named RandClick? I tried looking up the function, but it does not appear to exist in the Autoit Help Files.

Would somone explain to me exactly what this does, as it seems to function the same way the mouseclick function does.

Edited by KingYoshi
Link to comment
Share on other sites

It looks to be a function that's inside the script you found it, it's not a normal AutoIt function or included UDF function.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Ahh thank you for that. I did not know a custom function could have the same parmiters as a regular function.

Feel a bit stupid right now. X)

From what I found, it seems that RandClick is a function that makes sure that the X and Y for the mouseclick remain integers, since on certain resolution computers they can become non integer numbers.

Again, thank you for your help.

Edited by KingYoshi
Link to comment
Share on other sites

Sounds more descriptive of a function to click a random location on desktop.

After taking a second lok at the code, it probably is.

This is the function that was used. Maybe I misunderstood it. Since it does have the random function in it. Hoever now that i look at it, I am a bit confused as to what exactly the random function does.

(I have not yet gone over therandom function, but will look into it.)

Func RandClick($clickType, $xPos, $yPos, $xOff = 10, $yOff = 10, $clicks = 1, $speed = 4)
If $xOff < 1 Then $xOff = 1
If $yOff < 1 Then $yOff = 1
$randX = Round(Random($xPos - ($xOff * $x_screensize), $xPos + ($xOff * $x_screensize)))
$randY = Round(Random($yPos - ($yOff * $y_screensize), $yPos + ($yOff * $y_screensize)))
MouseClick($clickType, $randX, $randY, $clicks, $speed)
EndFunc ;==>RandClick

This seems to be pretty complex for a simple program that makes and names folders. I guess it was meant to be part of a larger program.

I would paste the code in its entireity here, but would have to ask permission from my friend first, since he tends to be a bit protective about his coding.

Edited by KingYoshi
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...