xkaser101 Posted February 21, 2010 Posted February 21, 2010 I was wondering how to create a program that can click on a random position for example :- Mouseclick ( ' left ' random ( 300,42 , 400,42 ) , 1 ) and it will pick a random position for example " 342 , 52 " I have done my way and it went wrong So can you help me , please ?Thanks in advance ,Best regards , Essa Khamis .
Yoriz Posted February 21, 2010 Posted February 21, 2010 MouseClick("left",Random(0,@DesktopWidth,1),Random(0,@DesktopHeight,1)) GDIPlusDispose - A modified version of GDIPlus that auto disposes of its own objects before shutdown of the Dll using the same function Syntax as the original.EzMySql UDF - Use MySql Databases with autoit with syntax similar to SQLite UDF.
xkaser101 Posted February 21, 2010 Author Posted February 21, 2010 MouseClick("left",Random(0,@DesktopWidth,1),Random(0,@DesktopHeight,1)) Excuse me i am new to this whole thing , so please can you explain better what @desktop width and height are used for and how to use them right . Thanks in advance.
Yoriz Posted February 21, 2010 Posted February 21, 2010 (edited) MouseClick("left",Random(0,@DesktopWidth,1),Random(0,@DesktopHeight,1)) ; The above line broken down as follows ; MouseClick ( "button" [, x, y [, clicks [, speed ]]] ) ; this is the function you want to use, and you want to replace the x and y with random ; screen co-ordinates ;Random ( [Min [, Max [, Flag]]] ) ; this will create your random pos for min you want 0 for max you want screen width/height ;@DesktopHeight Height of the desktop screen in pixels. (vertical resolution) ;@DesktopWidth Width of the desktop screen in pixels. (horizontal resolution) $iDesktopWidth = @DesktopWidth ; Gets screenwidth $iDesktopHeight = @DesktopHeight ; Gets ScreenHeight $iRandomDesktopWidth = Random(0,$iDesktopWidth,1) ; Gets Random screenwidth pos $iRandomDesktopHeight = Random(0,$iDesktopHeight,1) ; Gets Random ScreenHeight pos MouseClick("left",$iRandomDesktopWidth,$iRandomDesktopHeight) ; Clicks random pos Edited February 21, 2010 by Yoriz GDIPlusDispose - A modified version of GDIPlus that auto disposes of its own objects before shutdown of the Dll using the same function Syntax as the original.EzMySql UDF - Use MySql Databases with autoit with syntax similar to SQLite UDF.
PrinceLother Posted September 2, 2017 Posted September 2, 2017 maybe its old post now but can you help me about random mouse movement and clicks?
careca Posted September 2, 2017 Posted September 2, 2017 Wow, nice ressurection. Did you even try the code? 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
water Posted September 2, 2017 Posted September 2, 2017 He was just trying to push up his post count 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
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