mr-es335 Posted February 21 Posted February 21 Good day, I know that the following IS possible employing MouseClickDrag(): Sleep($iTimeOut) MouseClick($MOUSE_CLICK_LEFT, 1907, 800, 2, 0) ; Select: Right edge of F Mixer Sleep($iTimeOut) MouseClickDrag($MOUSE_CLICK_LEFT, 1907, 800, 368, 424, 0) ; Move: Right edge of F Mixer However, is the above NOT possible employing ControlClick...in particular, to achieve the following?: Any assistance in this would be GREATLY APPRECIATED!! mr-es335 Sentinel Music Studios
mr-es335 Posted February 21 Author Posted February 21 Anyone!! Interestingly, this example DOES work... ControlSend("[CLASS:SAC_MESSAGE]", "", "", "{ENTER}") ...but this example DOES NOT work... ControlSend("[CLASS:$hSAC_MAIN]", "", "", "{F1}") mr-es335 Sentinel Music Studios
ioa747 Posted February 22 Posted February 22 13 hours ago, mr-es335 said: However, is the above NOT possible employing ControlClick...in particular, to achieve the following?: I don't think you need ControlClick in this case, since what you're going to drag is not a control, but the mixer window. 6 hours ago, mr-es335 said: ...but this example DOES NOT work... ControlSend("[CLASS:$hSAC_MAIN]", "", "", "{F1}") maybe with CLASS:SAC_MAIN witout $h mr-es335 1 I know that I know nothing
Nine Posted February 22 Posted February 22 You can change the size of the window or even the size of a control using _WinAPI_SetWindowPos mr-es335 1 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy Interface Object based on Tag
mr-es335 Posted February 23 Author Posted February 23 (edited) Hello, For ioa747, completely missed that one...will confirm! Global $hSAC_MAIN = "[CLASS:SAC_MAIN]" ControlSend($hSAC_MAIN, "", "", "{F1}") ; Does NOT work Sleep(2000) ControlSend("[CLASS:SAC_MAIN]", "", "", "{F1}") ; Does NOT work Sleep(2000) Send("{F1}") ; DOES work! For Nine, I cannot programmatically adjust window size. Window resizing must be done via mouseclickdrag. Edited February 23 by mr-es335 mr-es335 Sentinel Music Studios
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