WillFerraz 0 Posted Tuesday at 01:45 PM Hello everyone! Im trying to write text on multiple and specifics notepads at same time when all are minimized Have some way on autoit to do that? Share this post Link to post Share on other sites
FrancescoDiMuro 418 Posted Tuesday at 01:47 PM @WillFerraz Why? Click here to see my signature: Spoiler ALWAYS GOOD TO READ: Forum Rules Forum Etiquette Share this post Link to post Share on other sites
WillFerraz 0 Posted Tuesday at 01:53 PM @FrancescoDiMuro Thats is a simple way to explain what i need, im gona use this function to upgrade my food delivery write on autoit. Share this post Link to post Share on other sites
Nine 992 Posted Tuesday at 02:22 PM Run("Notepad") $hWnd = WinWait("[CLASS:Notepad]") WinSetState($hWnd, "", @SW_MINIMIZE) Sleep(1000) ControlSetText($hWnd, "", "Edit1", "This was set") ControlSend($hWnd, "", "Edit1", "This was send") You can set/send text to minimize windows at the condition you can know the control ID of the field you want to fill 1 WillFerraz reacted to this Not much of a signature but working on it... Spoiler Block all input without UAC Save/Retrieve Images to/from Text Tool to search content in au3 files Date Range Picker Sudoku Game 2020 Overlapped Named Pipe IPC x64 Bitwise Operations Multi-keyboards HotKeySet Fast and simple WCD IPC GIF Animation (cached) Share this post Link to post Share on other sites
WillFerraz 0 Posted Tuesday at 03:39 PM 1 hour ago, Nine said: Run("Notepad") $hWnd = WinWait("[CLASS:Notepad]") WinSetState($hWnd, "", @SW_MINIMIZE) Sleep(1000) ControlSetText($hWnd, "", "Edit1", "This was set") ControlSend($hWnd, "", "Edit1", "This was send") You can set/send text to minimize windows at the condition you can know the control ID of the field you want to fill Thanks! I use WinGetHandle to match better, set de title of handle with WinSetTitle and after that i can use without problems when Window is minimized. Share this post Link to post Share on other sites