reverse Posted May 3, 2013 Posted May 3, 2013 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?
Moderators JLogan3o13 Posted May 3, 2013 Moderators Posted May 3, 2013 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!
reverse Posted May 3, 2013 Author Posted May 3, 2013 Have you tried something like this? ControlSend("[CLASS:Photoshop]", "", "", "{CTRLDOWN}{ENTER}{CTRLUP}", 0) Thx for help. Works also with ControlSend("[CLASS:Photoshop]","","","^{NUMPADENTER}") I don't know why :/
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