Setup a button to open a specific software #276
Unanswered
ericsacchetto
asked this question in
Q&A
Replies: 1 comment
-
; press of F13
F13::Run "C:\Program Files (x86)\Steam\Steam.exe"
return
; press of Shift+F15 will run notepad
+F15::Run "notepad.exe"
return
; press of Win+F14 will send the following text verbatim to the window with focus
#F14:: SendInput {Text}Foobar1000
return
; press of Alt+F24 will kill the process whose window is having focus (that is possibly not responding)
!F24::
WinGet, PID, PID, % "ahk_id " WinExist("A")
Process, Close, %PID%
return
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
I am trying to implement a button to open a specific software in Windows.
So, pressing a button would open Steam, for example.
C:\Program Files (x86)\Steam\Steam.exe
I am not sure if that is possible or how to do it. Can anyone help me?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions