Jump to content

ControlSend problem


Recommended Posts

Hi guys.

I just made my script and it works almost perfect but I have some problems with ControlSend function.

While 1
$msg = GUIGetMsg()

Select
Case $msg = $okbutton
     GuiDelete("H")
Sleep(200)
ControlSend("[CLASS:Photoshop]","","","^{ENTER}",0)
Sleep(200)
     ExitLoop
EndSelect
WEnd

The problem is that the script randomly sends "Ctrl+Enter" (which I need) and sometimes just "Enter" to photoshop.

I need it to send Ctrl+Enter all the time.

I know I made something wrong but I just can't find the solution myself.

I tried increasing Sleep or adding WinActivate function but still no progress.

Any advise?

Link to comment
Share on other sites

  • Moderators

Have you tried something like this?

ControlSend("[CLASS:Photoshop]", "", "", "{CTRLDOWN}{ENTER}{CTRLUP}", 0)

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

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