zergling Posted August 29, 2006 Posted August 29, 2006 I've written a script to automate printing. But script will not function correctly while multi-tasking with other windows open. Is there a way to Lock the processing windows in order to prevent user interaction while the script is running. Thanks Much!!
Valuater Posted August 29, 2006 Posted August 29, 2006 maybe... #include <Misc.au3> WinMinimizeAll() ToolTip("Please wait....", 10, 10, "Installing Updates", 1) BlockInput(1) _MouseTrap( 90, 40, 110, 50) Sleep(10000) ; wait 10 seconds for testing _MouseTrap() BlockInput(0) 8)
zergling Posted August 31, 2006 Author Posted August 31, 2006 maybe... #include <Misc.au3> WinMinimizeAll() ToolTip("Please wait....", 10, 10, "Installing Updates", 1) BlockInput(1) _MouseTrap( 90, 40, 110, 50) Sleep(10000) ; wait 10 seconds for testing _MouseTrap() BlockInput(0) 8) Thanks for you immense contrib to the Commune! These functions are not included in the Misc.au3 ie. _MouseTrap Are these part of the Beta? Thanks, zerg
Valuater Posted August 31, 2006 Posted August 31, 2006 they are in the newer public release of Autooit 3.2.0 8) uninstall the 3.1.0 first
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