Gavriels Posted October 23, 2022 Posted October 23, 2022 Hello, is there a function that forces the simulation on a window that is a priori protected, I have already tried #RequireAdmin ControlClick("AnyDesk","","[Text:Chat]") Opt("MouseClickDownDelay",50) MouseClick("left", 1177,710, 2,80) MouseMove(1177,710) DllCall("user32.dll", "NONE", "mouse_event", "DWORD", 0x0002, "DWORD", 1, "DWORD", 1, "DWORD", 0, "ULONG_PTR", 0) Sleep(250) DllCall("user32.dll", "NONE", "mouse_event", "DWORD", 0x0004, "DWORD", 1, "DWORD", 1, "DWORD", 0, "ULONG_PTR", 0) All this function works elsewhere on the screen but on the window that I want it does not work. Thank you in advance for your help
Danp2 Posted October 26, 2022 Posted October 26, 2022 On 10/23/2022 at 9:54 AM, Gavriels said: priori protected I'm not familiar with this. Can you explain what it is? Latest Webdriver UDF Release Webdriver Wiki FAQs
Nine Posted October 26, 2022 Posted October 26, 2022 All apss do not use Window messages to accomplish some tasks. Ones can decide to interact directly with the driver. They may decide to do so to shortcut some bots trying to automate their application. You are maybe facing this situation. “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
AutoXenon Posted October 27, 2022 Posted October 27, 2022 The window you're controlling might be running at SYSTEM privilege while the script is only at Admin level.
Gavriels Posted October 27, 2022 Author Posted October 27, 2022 23 hours ago, Nine said: All apss do not use Window messages to accomplish some tasks. Ones can decide to interact directly with the driver. They may decide to do so to shortcut some bots trying to automate their application. You are maybe facing this situation. If so, how to simulate a click like a real human with autoit
Gavriels Posted October 27, 2022 Author Posted October 27, 2022 14 hours ago, AutoXenon said: The window you're controlling might be running at SYSTEM privilege while the script is only at Admin level. So what should I do to control the privileged system
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