jepri Posted March 7, 2024 Posted March 7, 2024 a) How to use blockinput withouth : 1) #requireadmin 2) required UAC b) how to by pass UAC?
jepri Posted March 7, 2024 Author Posted March 7, 2024 Just now, jepri said: a) How to use blockinput withouth : 1) #requireadmin 2) required UAC b) how to by pass UAC? blockinput()
Developers Jos Posted March 7, 2024 Developers Posted March 7, 2024 Moved to the appropriate AutoIt General Help and Support forum, as the Developer General Discussion forum very clearly states: Quote General development and scripting discussions. Do not create AutoIt-related topics here, use the AutoIt General Help and Support or AutoIt Technical Discussion forums. Moderation Team SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
jepri Posted March 7, 2024 Author Posted March 7, 2024 a) How to use blockinput withouth : 1) #requireadmin 2) required UAC b) how to by pass UAC?
argumentum Posted March 7, 2024 Posted March 7, 2024 (edited) Edited March 7, 2024 by argumentum Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting.
Developers Jos Posted March 7, 2024 Developers Posted March 7, 2024 (edited) 1 hour ago, jepri said: a) How to use blockinput withouth : 1) #requireadmin 2) required UAC b) how to by pass UAC? Why post the same question again after you marked this one completed? Please stuck to one thread for the same topic! I see you even posted one more which was zapped by us already, so you better not do this again. Edited March 7, 2024 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
jepri Posted March 7, 2024 Author Posted March 7, 2024 how to exclude _BlockInput from my script using send function "Send("testing")". when i use _BlockInput($BI_DISABLE) function Send("testing") not write to notepad. thankyou.
Developers Jos Posted March 7, 2024 Developers Posted March 7, 2024 (edited) I told you not to cross post and the first thing you do is post the same question in 2 thread. This is your last warning, next time this happens you will be banned for a while. The other post is removed. Edited March 7, 2024 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Nine Posted March 7, 2024 Posted March 7, 2024 @jepri Use Control* functions when you are blocking all inputs. Send is just like typing. #include "BlockInputEX.au3" Run("Notepad") Local $hWnd = WinWaitActive("[CLASS:Notepad]") _BlockInput($BI_DISABLE) ; block input ControlSetText($hWnd, "", "Edit1", "This is a test" & @CRLF) Sleep(1000) ControlSend($hWnd, "", "Edit1", "New line here" & @CR) Sleep(3000) _BlockInput($BI_ENABLE) ; enable input “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
jepri Posted March 7, 2024 Author Posted March 7, 2024 I'm still learning, I'm sorry @Jos. thankyou so much @Nine argumentum 1
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