DoubleMcLovin Posted June 17, 2010 Posted June 17, 2010 (edited) Ok, lets say I have two copies of notepad open with a fresh file on each. The default name is "Untitled - Notepad" for each of them right now. I know I can use the ControlSend function to send input directly to a chosen window, but how can I allow it to differentiate between the active notepad, and the inactive notepad without creating a custom window title for one of them? EDIT: I know I can use the AutoITv3 Window Info tool to find the Handle of each manually, I want to do this automatically to get the handle of the actively running window. Edited June 17, 2010 by DoubleMcLovin
Ascend4nt Posted June 17, 2010 Posted June 17, 2010 This will get you the currently active window: $hWin=WinGetHandle("[ACTIVE]") If Notepad isn't active, you'll have to figure another way to distinguish which one is the one you want. I'm not sure if there's a way to get the Z-order list of Windows, but even then - what happens if Notepad is minimized? My contributions: Performance Counters in Windows - Measure CPU, Disk, Network etc Performance | Network Interface Info, Statistics, and Traffic | CPU Multi-Processor Usage w/o Performance Counters | Disk and Device Read/Write Statistics | Atom Table Functions | Process, Thread, & DLL Functions UDFs | Process CPU Usage Trackers | PE File Overlay Extraction | A3X Script Extract | File + Process Imports/Exports Information | Windows Desktop Dimmer Shade | Spotlight + Focus GUI - Highlight and Dim for Eyestrain Relief | CrossHairs (FullScreen) | Rubber-Band Boxes using GUI's (_GUIBox) | GUI Fun! | IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) | Magnifier (Vista+) Functions UDF | _DLLStructDisplay (Debug!) | _EnumChildWindows (controls etc) | _FileFindEx | _ClipGetHTML | _ClipPutHTML + ClipPutHyperlink | _FileGetShortcutEx | _FilePropertiesDialog | I/O Port Functions | File(s) Drag & Drop | _RunWithReducedPrivileges | _ShellExecuteWithReducedPrivileges | _WinAPI_GetSystemInfo | dotNETGetVersions | Drive(s) Power Status | _WinGetDesktopHandle | _StringParseParameters | Screensaver, Sleep, Desktop Lock Disable | Full-Screen Crash Recovery Wrappers/Modifications of others' contributions: _DOSWildcardsToPCRegEx (original code: RobSaunder's) | WinGetAltTabWinList (original: Authenticity) UDF's added support/programming to: _ExplorerWinGetSelectedItems | MIDIEx UDF (original code: eynstyne) (All personal code/wrappers centrally located at Ascend4nt's AutoIT Code)
DoubleMcLovin Posted June 17, 2010 Author Posted June 17, 2010 If Notepad isn't active, you'll have to figure another way to distinguish which one is the one you want. I'm not sure if there's a way to get the Z-order list of Windows, but even then - what happens if Notepad is minimized?If notepad is minimized and I am using the COntrolSend function, shouldn't it still receive my input?
Remnant Posted June 17, 2010 Posted June 17, 2010 Two or three things come to mind. when you say a "fresh file on each" do you mean a new empty document? If so, does it matter which one you use? If they are not empty, you can check for the window with title "Untitled - Notepad" and text - "whatever" If it is simple a matter of sending to the same one each time (but it doesn't matter which one originally) then use WinGetHandle
Ascend4nt Posted June 17, 2010 Posted June 17, 2010 If notepad is minimized and I am using the COntrolSend function, shouldn't it still receive my input?Wouldn't it then not be considered the 'active' notepad? My point is - how do you distinguish. But to answer your question - yes, many (but not all) applications will respond to ControlSend in minimized/hidden states. My contributions: Performance Counters in Windows - Measure CPU, Disk, Network etc Performance | Network Interface Info, Statistics, and Traffic | CPU Multi-Processor Usage w/o Performance Counters | Disk and Device Read/Write Statistics | Atom Table Functions | Process, Thread, & DLL Functions UDFs | Process CPU Usage Trackers | PE File Overlay Extraction | A3X Script Extract | File + Process Imports/Exports Information | Windows Desktop Dimmer Shade | Spotlight + Focus GUI - Highlight and Dim for Eyestrain Relief | CrossHairs (FullScreen) | Rubber-Band Boxes using GUI's (_GUIBox) | GUI Fun! | IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) | Magnifier (Vista+) Functions UDF | _DLLStructDisplay (Debug!) | _EnumChildWindows (controls etc) | _FileFindEx | _ClipGetHTML | _ClipPutHTML + ClipPutHyperlink | _FileGetShortcutEx | _FilePropertiesDialog | I/O Port Functions | File(s) Drag & Drop | _RunWithReducedPrivileges | _ShellExecuteWithReducedPrivileges | _WinAPI_GetSystemInfo | dotNETGetVersions | Drive(s) Power Status | _WinGetDesktopHandle | _StringParseParameters | Screensaver, Sleep, Desktop Lock Disable | Full-Screen Crash Recovery Wrappers/Modifications of others' contributions: _DOSWildcardsToPCRegEx (original code: RobSaunder's) | WinGetAltTabWinList (original: Authenticity) UDF's added support/programming to: _ExplorerWinGetSelectedItems | MIDIEx UDF (original code: eynstyne) (All personal code/wrappers centrally located at Ascend4nt's AutoIT Code)
DoubleMcLovin Posted June 17, 2010 Author Posted June 17, 2010 Of course notepad is just a simple example. My actual goal does not involve using notepad, it more closely resembles background processing so that I can continue to work in the foreground on my own while in the background a control is manipulated.
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