matumbo Posted October 2, 2007 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?
Cyber Posted October 2, 2007 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
PsaltyDS Posted October 2, 2007 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
matumbo Posted October 2, 2007 Author Posted October 2, 2007 Thx, that was exactly what I was searching for.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now