hackndoes 0 Posted August 16, 2010 Hi, I wan't to run multiple autoit commands from commandline that will run in the same instance like in a script, for instance to set window title find by partial title 'Opt('WinTitleMatchMode',2)' and then operate on the window ('WinClose('title')') i don't want to do it from a script rather something like this: autoIt3.exe /ErrorStdOut /AutoIt3ExecuteLine "Opt('WinTitleMatchMode',2)& WinSetState('title','', @SW_MAXIMIZE)" how can this be achieved? Share this post Link to post Share on other sites
Bert 1,430 Posted August 16, 2010 AutoIt is single thread, not multi thread. The Vollatran project My blog: http://www.vollysinterestingshit.com/ Share this post Link to post Share on other sites
hackndoes 0 Posted August 16, 2010 don't understand what you are trying to say? I want the same thread to execute two commands one after the other in the context of the same process\thread. don't want the two actions to execute in parallel. Share this post Link to post Share on other sites
MvGulik 86 Posted August 16, 2010 Seems to me the option /AutoIt3ExecuteLine is pretty clear about the line part.To run code that can't be merged into a single code line you need to dump it in a (temporary) script file and run that.Threading: +? "Straight_and_Crooked_Thinking" : A "classic guide to ferreting out untruths, half-truths, and other distortions of facts in political and social discussions.""The Secrets of Quantum Physics" : New and excellent 2 part documentary on Quantum Physics by Jim Al-Khalili. (Dec 2014)"Believing what you know ain't so" ...Knock Knock ... Share this post Link to post Share on other sites
hackndoes 0 Posted August 16, 2010 I still don't understand the threading part. I didn't ask for it to work with the flag ExecuteLine rather some other configuration that does that, if exists. I understand from what you are saying that it doesn't exist. thanks. the temp script file might be a crucked yet appropriate solution for my need. Share this post Link to post Share on other sites
Ascend4nt 131 Posted August 16, 2010 "C:\Program Files\AutoIt3\AutoIt3.exe" /ErrorStdOut /AutoIt3ExecuteLine "Local $i=Opt('WinTitleMatchMode',2),$s=WinSetState('WindowTitle','', @SW_MAXIMIZE)" 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 RecoveryWrappers/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) Share this post Link to post Share on other sites