Best way to Control Windows 7 Media Center
sijones
Posts: 16
I wondered if someone could offer me some advice on the best method for controlling Windows 7 Media Center?
Thanks in advance,
Steve
Thanks in advance,
Steve
0
Comments
I use MCE controller at home on a Win 7 media centre - a freeware program by Kindle systems. Basically, after you install this program on your medie centre Win 7 or Win XP machine, stick it into the startup folder.
Configure the port on the PC side, and then program in an IP device into the NI (including the port number).
The list of commands is included in the docs, and its real easy to use. You send it a string ( 'play') and it then translates this and sends the keyboard shortcut to the medie centre.
you can download it at
http://www.kindel.com/products/mcecontroller/
Hope this helps, but I'll post sample code if you want it.
Regards,
Andrew
Kind regards,
Steve
It, like everything else you send, is nothing more than a hex char (ascii) I think cntr-c is $03.
https://en.wikipedia.org/wiki/ASCII
http://mcec.codeplex.com/documentation "For example, the following causes a Ctrl-P to be sent to the foreground window, and if that window is Media Center, the My Pictures page appears:"
<SendInput Cmd="mypictures" vk="73" Shift="false" Ctrl="true" Alt="false" /> "(The VK code or 'P' is 73 decimal)."
http://www.physics.udel.edu/~watson/scen103/ascii.html