Jump to content

Connect Hotkey to program


Recommended Posts

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?

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...