jepri Posted March 7 Share Posted March 7 a) How to use blockinput withouth : 1) #requireadmin 2) required UAC b) how to by pass UAC? Link to comment Share on other sites More sharing options...
jepri Posted March 7 Author Share Posted March 7 Just now, jepri said: a) How to use blockinput withouth : 1) #requireadmin 2) required UAC b) how to by pass UAC? blockinput() Link to comment Share on other sites More sharing options...
Developers Jos Posted March 7 Developers Share Posted March 7 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. Link to comment Share on other sites More sharing options...
jepri Posted March 7 Author Share Posted March 7 a) How to use blockinput withouth : 1) #requireadmin 2) required UAC b) how to by pass UAC? Link to comment Share on other sites More sharing options...
argumentum Posted March 7 Share Posted March 7 (edited) Edited March 7 by argumentum Follow the link to my code contribution ( and other things too ). FAQ - Please Read Before Posting. Link to comment Share on other sites More sharing options...
Developers Jos Posted March 7 Developers Share Posted March 7 (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 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. Link to comment Share on other sites More sharing options...
jepri Posted March 7 Author Share Posted March 7 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. Link to comment Share on other sites More sharing options...
Developers Jos Posted March 7 Developers Share Posted March 7 (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 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. Link to comment Share on other sites More sharing options...
Nine Posted March 7 Share Posted March 7 @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) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
jepri Posted March 7 Author Share Posted March 7 I'm still learning, I'm sorry @Jos. thankyou so much @Nine argumentum 1 Link to comment Share on other sites More sharing options...
paw Posted March 7 Share Posted March 7 (edited) - Edited March 9 by paw delete Link to comment Share on other sites More sharing options...
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