Nikolle9203 Posted February 10, 2014 Posted February 10, 2014 Is it possible to @SW_HIDE any chield proces started by run() or other execution func? Also is it possible to @SW_HIDE an process before its even existing? Thanks
BlackDawn187 Posted February 10, 2014 Posted February 10, 2014 (edited) In regards to hiding a child window/process, In theory, I imagine you could do it using WinSetState. You would need some sort of loop to check for the window/process though. Detecting the child window/process would just be a matter of using WinList and, Comparing the resulting array to see if Result[0][0] > 0. Then do a For loop, That checks if Result[0][0] > 0 Then WinSetState("Child Windows Handle", @SW_HIDE). Hopefully, This will get you going in the right direction. In regards to hiding a process before it exists, You would have to probably use a dll to monitor current processes and, newly executed processes. Which is something I haven't learned how to do yet. So perhaps someone else knowledgeable in the matter could point you in the right direction as per that. Edited February 10, 2014 by BlackDawn187
JohnOne Posted February 10, 2014 Posted February 10, 2014 You cannot hide a process before it exists, anymore that you can play a piano before it exists. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
somdcomputerguy Posted February 10, 2014 Posted February 10, 2014 Is it possible to @SW_HIDE any chield proces started by run() or other execution func? http://www.autoitscript.com/autoit3/docs/functions/Run.htm - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
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