Click 'Ok' or 'Close', etc.

Discuss anything related to portable freeware here.
Post Reply
Message
Author
User avatar
david.lynch
Posts: 78
Joined: Tue May 04, 2010 8:04 am

Click 'Ok' or 'Close', etc.

#1 Post by david.lynch »

Hello everyone,

I'm looking for an aplication that could be configured to automatically click 'Ok', or 'Cancel' to get nag screens out of the way or to automate another processes.

Any help would be greatly appreciated Image

User avatar
Napiophelios
Posts: 610
Joined: Sun Mar 01, 2009 5:48 pm

Re: Click 'Ok' or 'Close', etc.

#2 Post by Napiophelios »

You can use AutoIT or AutoHotKey

I used AutoHotKey for Eusings Registry Cleaner nag screen
its very basic but it works
just record the mouse movements then tweak the script
then when it works like you want it too
you can compile into an exe launcher.

mine looks like so (skip-nag.ahk):

Code: Select all

SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
Run, App\Regcleaner.exe
MouseClick, left,  256,  326
Sleep, 1
Last edited by Napiophelios on Sat Oct 27, 2012 5:22 pm, edited 1 time in total.


User avatar
david.lynch
Posts: 78
Joined: Tue May 04, 2010 8:04 am

Re: Click 'Ok' or 'Close', etc.

#4 Post by david.lynch »

Napiophelios, I'm already using AutoHotKey, and it is really good! Image

I am Baas, you've helped me other times and now it is no different. This is exactly the one that I'm looking for, I've just forgot the name.

Please accept my huge Image

Image & Image

Post Reply