Command line control

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Command line control

Re: Command line control

by pushpull » Sat Apr 05, 2014 9:40 pm

fizzjob, this worked great. I had to play around with it for a while and even abandoned it for a while with another tack on EventGhost. I finally came back to the script. I was having a problem getting it to run in the field I had to work with. Finally I took "if ("0" != runCommand("\"C:\\Program Files\\Winamp\\CLAmp.exe\" /PID")) runCommand("\"C:\\Program Files\\Winamp\\CLAmp.exe\" /PAUSE ON");" and changed it to this - runCommand("\"C:\\MediamonkeyPause.vbs");. Bingo, we have ignition. The only real issue now is that it will toggle on with the next call. I don't see this as a serious issue as I don't get that many phone calls to make this a likelihood. Thanks again. I do believe I have learned something to boot.

Re: Command line control

by fizzjob » Thu Apr 03, 2014 5:01 pm

pushpull wrote:Since I am not a programmer or script writer I have to ask, do I just use this code "as is"? That is, is there anything in the code I have to replace or is it simply copy/paste into notepad and save with a .vbs extension? Also, you say you use it to unpause MM as well. This is accomplished simply by running the script again, so it is in essence a toggle? Thanks again.
The code is universal, so it should be usable as-is, and you are correct in that it functions as a toggle.

Re: Command line control

by pushpull » Mon Mar 31, 2014 7:24 pm

Thanks fizzjob. I ended up using Event Ghost to accomplish this and bypassing the widget. This worked but then I lost the Caller ID information that was displayed by the widget. I had another winamp plugin that also will pause MM but it wouldn't recognize the USB modem I was using. Do you think I can simply put the"cscript.exe \path\to\script.vbs" into the field for the eval() function? Maybe I can use the script in conjunction with the widget and Event Ghost to get back full functionality. It will give me something to play with. Since I am not a programmer or script writer I have to ask, do I just use this code "as is"? That is, is there anything in the code I have to replace or is it simply copy/paste into notepad and save with a .vbs extension? Also, you say you use it to unpause MM as well. This is accomplished simply by running the script again, so it is in essence a toggle? Thanks again.

Re: Command line control

by fizzjob » Mon Mar 31, 2014 4:36 pm

You can fake it with a bit of vbscript. For example, this script will pause (or unpause) MediaMonkey if it's running and not stopped.

Code: Select all

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" _
    & strComputer & "\root\cimv2")
Set colProcessList = objWMIService.ExecQuery _
    ("Select * from Win32_Process Where Name = 'MediaMonkey.exe'")
For Each objProcess in colProcessList
    Dim SDB : Set SDB = CreateObject("SongsDB.SDBApplication")
    if SDB.Player.IsPlaying then
       SDB.Player.Pause
    end if
Next
You can then call it with "cscript.exe \path\to\script.vbs". Personally, I use that to pause MM when I lock my PC at work (which I have to do whenever I walk away) and then unpause it when I unlock it.

Re: Command line control

by Lowlander » Sat Mar 08, 2014 4:51 pm

I believe the only documented command lines are: http://www.mediamonkey.com/support/inde ... ticleid=45

Command line control

by pushpull » Sat Mar 08, 2014 1:34 pm

I am using a an old Yahoo widget that will pause Winamp with an incoming phone call. This is accomplished by placing the statement "if ("0" != runCommand("\"C:\\Program Files\\Winamp\\CLAmp.exe\" /PID")) runCommand("\"C:\\Program Files\\Winamp\\CLAmp.exe\" /PAUSE ON");" in an input field for an eval() parameter in the options setup.
The CLAmp.exe is a command line utility for controlling Winamp. Does anyone know of something similar for MM? Another thing that can be put into this field is tellWidget() with the example given tellWidget("mgk", "mute"). Is this supported in MM? I would rather just use MM's player than launching Winamp.
Thanks.

Top