Jump to content

to make my own hotkey


Recommended Posts


Ctrl+1 = Open MSFN in explorer.

Ctrl+2 = Exit script.

HotKeySet('^1', 'MSFN')
HotKeySet('^2', 'Close')

While 1
   Sleep(1000)
WEnd

Func MSFN()
   Run('explorer.exe "http://www.msfn.org"')
EndFunc

Func Close()
   Exit
EndFunc

Just use AutoIt to run it. ;)

Edited by MHz
Link to comment
Share on other sites

Ctrl+1 = Open MSFN in explorer.

Ctrl+2 = Exit script.

HotKeySet('^1', 'MSFN')
HotKeySet('^2', 'Close')

While 1
   Sleep(1000)
WEnd

Func MSFN()
   Run('explorer.exe "http://www.msfn.org"')
EndFunc

Func Close()
   Exit
EndFunc

Just use AutoIt to run it. ;)

thank yu

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
  • Recently Browsing   0 members

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