INTERACT FORUM
More => Old Versions => Media Center 11 (Development Ended) => Topic started by: gappie on April 20, 2006, 09:26:11 am
-
or even more specific.
when i want to open theater view in a specific zone, what should i use as a command. i know the mcc 22001,2 for theater view. but then im stuck. the 'parameters >= 0: zone number + parameter' from the mcccommand page did not do the trick. or i understood it wrong.
thanks
-
Use 10011:
MCC_SET_ZONE // [int nZoneIndex (-1 toggles forward, -2 toggles backwards)]
So,
MC11.exe /MCC 10011,1
Remember that zones start counting at zero.
-
Thanks a lot. that works.
:)
-
so when i understand it right. according to the mcc commands list i should use
mc11.exe /mcc 31001
for
MCC_IMAGE_ROTATE_LEFT
but that does not work. so :-\
guess i dont understand it right.
and i was lookin also for a mcc command to zoom in and out. could not find that in the list.
thanks a lot
-
so i guess it is a bug.
/mcc 31000 works
then 31001 and 2 and 3 dont
31004 and 5 do.
-
Not all commands will be usable from the command line. Some commands are internal.
MCC command routing is recommended for playback control. For more advanced things, it's uncharted territory.
-
Not sure what you're up to gappie, but if you're setting up using Girder (or something similar) you will have much better performance if you use Windows Messages (via the SendMessage plugin) (http://yabb.jriver.com/interact/index.php?topic=33245.msg227852#msg227852) to control MC rather than calling MC11.exe. Each time you call MC11.exe there is a delay while Windows "starts up" the small "calling" application. Using SendMessage doesn't incur the same penalty.
I have found some cases where it is difficult to get MC to respond to Windows Messages reliably (in Theater View for example), and for those I call MC11.exe. Otherwise, you'll probably be best served by going the Windows Message route. Also, you have the benefit of many more of the commands working as promised!
-
i want to rotate an image in theaterview. will check the windows message route. i used that to programm grider to control the volume on my rme soundcard in 40 steps. not very elegant. but worked. for zooming into an image the keyboard emulation is doin fine. if i find how to rotate an image ill report back for if somebody wants to know.