123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- NumberOfParameters = %0%
- Loop, %NumberOfParameters%
- {
- Parameter := %A_Index%
-
- if ( !IsLabel( Parameter ) )
- {
- ;MsgBox, Parameter "%Parameter%" Not Recognized.
- Return
- }
-
- GoSub, %Parameter%
- }
- return
- KODI:
- ;MsgBox,Kodi
- Process, Close, spotify.exe
- Process, Close, vlc.exe
- Process, Close, MediaMonkey.exe
- Run "C:\Program Files\Kodi\kodi.exe"
- return
- SPOTIFY:
- ;MsgBox,Spotify
- Process, Close, kodi.exe
- Process, Close, MediaMonkey.exe
- Process, Close, vlc.exe
- Run "C:\Users\Flo\AppData\Roaming\Spotify\Spotify.exe"
- return
- MEDIAMONKEY:
- ;MsgBox,Spotify
- Process, Close, kodi.exe
- Process, Close, spotify.exe
- Process, Close, vlc.exe
- Run "C:\Program Files (x86)\MediaMonkey\MediaMonkey.exe"
- return
- VLC:
- ;MsgBox,Spotify
- Process, Close, kodi.exe
- Process, Close, spotify.exe
- Process, Close, MediaMonkey.exe
- Run "C:\Program Files\VideoLAN\VLC\vlc.exe"
- return
|