ljkkda 0 Posted April 18, 2005 is it possible send a text in a background windwow so taht the window stay at background? i mean not WinActivate ( "title") ... ... possible? thx for help Share this post Link to post Share on other sites
zeroZshadow 0 Posted April 18, 2005 (edited) ; Check if a window is minimized $state = WinGetState("Title", "") ; Is the "minimized" value set? If Not BitAnd($state, 16) Then WinSetState ("title","",@SW_MINIMIZE) EndIf like that?? RTFM!! EDIT: or just do this WinSetState ("title","",@SW_HIDE) Edited April 18, 2005 by zeroZshadow *If u thought life couldn't get worse, u meet me *<guy> What would you give my little sister to unzip ?<friend> 10 bucks<guy> No, i mean like Winzip... Share this post Link to post Share on other sites
ljkkda 0 Posted April 18, 2005 thx for fast answer but how do i send a text in the window now? im very new in this can you make an example how to send a text in a certain minimized window? Share this post Link to post Share on other sites
zeroZshadow 0 Posted April 18, 2005 try reading the manual. there are ALLOT of examples in it. (its always the same ) *If u thought life couldn't get worse, u meet me *<guy> What would you give my little sister to unzip ?<friend> 10 bucks<guy> No, i mean like Winzip... Share this post Link to post Share on other sites
Toppy 0 Posted April 18, 2005 I think the manual is clear enough to minimize a window. The guy's question was HOW TO SEND TEXT to a minimized window. AFAIK there no info on that in the Helpfile :"> Share this post Link to post Share on other sites
Jos 2,165 Posted April 18, 2005 You can send text to a window that doesn't have the focus. Look at the Control???() commands... 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. Share this post Link to post Share on other sites