how can i do that on win XP?tnx
Page 1 of 1
to make my own hotkey
#1
Posted 24 August 2005 - 01:26 PM
i have benn wondering how it would be great to just push 2buttons in the sime time and the explorer with http://msfn.org/ would be opened automatically?
how can i do that on win XP?tnx
how can i do that on win XP?tnx
#2
Posted 24 August 2005 - 02:25 PM
set as your homepage
or use a docklet app like object dock
This post has been edited by glent: 24 August 2005 - 02:26 PM
#3
Posted 25 August 2005 - 04:28 AM
Ctrl+1 = Open MSFN in explorer.
Ctrl+2 = Exit script.
Just use AutoIt to run it.
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.
This post has been edited by MHz: 25 August 2005 - 04:30 AM
#4
Posted 25 August 2005 - 04:47 AM
MHz, on Aug 25 2005, 01:28 PM, said:
Ctrl+1 = Open MSFN in explorer.
Ctrl+2 = Exit script.
Just use AutoIt to run it.
<{POST_SNAPBACK}>
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.
<{POST_SNAPBACK}>
thank yu
Share this topic:
Page 1 of 1



Help

Back to top








