matumbo 0 Posted October 2, 2007 Hi I've tried to connect two hotkeys with two functions, the first hotkey should Start a program and the second hotkey should exit it, but the problem is that I can't find a way to put it in a loop. Any1 knows if I can put functions in loops? Or if it can be done in an other way? Share this post Link to post Share on other sites
Cyber 1 Posted October 2, 2007 post the code please Console Browse: Navigate on the WEB in a textual consoleMultiPing!: Show computer on the lan and/or show the local/remote task, ALL animated!KillaWin: Event executingCryptPage: Crypt your webpage and show only with key Share this post Link to post Share on other sites
PsaltyDS 41 Posted October 2, 2007 Simple demo: HotKeySet("{PGUP}", "_Start") HotKeySet("{PGDN}", "_Stop") HotKeySet("{ESC}", "_Quit") While 1 Sleep(20) WEnd Func _Start() If Not WinExists("Untitled - Notepad") Then Run("notepad.exe") EndFunc ;==>_Start Func _Stop() If WinExists("Untitled - Notepad") Then WinClose("Untitled - Notepad") EndFunc ;==>_Stop Func _Quit() Exit EndFunc ;==>_Quit 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
matumbo 0 Posted October 2, 2007 Thx, that was exactly what I was searching for. Share this post Link to post Share on other sites