Phenom 0 Posted June 19, 2010 I'm using an AutoIt script to call AutoHotkey scripts. Even when I stop the AutoIt script the AutoHotkey script that it starts keeps on running. I was wondering if there was a way to kill AutoHotkey scripts from AutoIt? Share this post Link to post Share on other sites
PsaltyDS 42 Posted June 19, 2010 I'm using an AutoIt script to call AutoHotkey scripts... (In case you don't live in a part of the world that has them, that noise is the sound of crickets chirping.) Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites
Unc3nZureD 13 Posted June 19, 2010 HotKeySet("{ESC}", "Terminate") Func Terminate() Exit 0 EndFunc hm? Share this post Link to post Share on other sites
GEOSoft 68 Posted June 19, 2010 Look up ProcessClose() Better yet, convert your AHK scripts to AutoIt. GeorgeQuestion about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else."Old age and treachery will always overcome youth and skill!" Share this post Link to post Share on other sites
somdcomputerguy 103 Posted June 19, 2010 (edited) I was wondering if there was a way to kill AutoHotkey scripts from AutoIt?I suppose the AutoHotkey IfWinNotExist and Exit commands could be used somehow in the AutoHotkey script. Not exactly 'doing it from AutoIt' though.. Edited June 19, 2010 by somdcomputerguy - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites