Jump to content

Recommended Posts

Posted (edited)

Hi,

I have a problem sending ctrl+a keys to a program.

That is NOT working:

send ("^a")

Next example is only partial working. The "down" is working the "up" not as all programms which are minimzied can not be maximized again until pressing strg again manually.

Send("{LCTRL down}{a down}")

Sleep(1000)

Send("{LCTRL up}{a up}")

So in the last example the ctrl+a is working but not released again.

Any idea?

Thanks

Daniel

Edited by daniel02
Posted

Hi,

I am wrong. It is also not working properly. It is working if I just start this single funktion. But is it not working ALLWAYS in the whole prog. Sometimes it does.

Very strange,

Any thoughts?

Thanks

Daniel

Posted

You should either use ControlSend, or activate the window with WinActivate() before the keys are sent. The window has to be active for the keys to be sent to that program.

Posted (edited)

Maybe your program is slow in recognizing key presses? Try using:

Opt("SendKeyDelay", 50)
Opt("SendKeyDownDelay", 50)

Stick it in the start of your script, then just do:

Send("^a")
Edited by omikron48

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