Jump to content

Recommended Posts

Posted

What is the best app or what ever to use for recording macros Ex. user activity of keys pressed, mouse right or left clicked, windows opened closed resized moved minimized maximized.. Ect.. into an autoit script..??

Posted

thanks I tried that, but my KAV tells me its some type of virus win32 hooker or something like that..??

is the Au3Recorder about the best thing available for autoit to capture macros..??

I also tried some other macrorecorder inside scite,

is there anyway to record macros without having the mouse beeing moved when executing the script, just execute the clicks and keys Ect..??

Also I saw something that said that the macro recorders couldn't cooperate with popup windows from main app window or something, is there anyway to overcome this..??

Posted

thanks I tried that, but my KAV tells me its some type of virus win32 hooker or something like that..??

is the Au3Recorder about the best thing available for autoit to capture macros..??

I also tried some other macrorecorder inside scite,

is there anyway to record macros without having the mouse beeing moved when executing the script, just execute the clicks and keys Ect..??

Also I saw something that said that the macro recorders couldn't cooperate with popup windows from main app window or something, is there anyway to overcome this..??

Hi,

If you have win32 virus don't compile with upx

For record somes keys use ispressed

#Include <Misc.au3>

While 1
If _IsPressed("01") then
Msgbox(0,"","mouse left click")
endif
WEnd

And use send func for send keys

Send("{ALT}{1}")

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...