INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Besides Green Button, any other way to get to Theater View Home With A Click?  (Read 1248 times)

datdude

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 2215

I know there are MCC commands but I have no idea how they could be used other than coding a program.  I use a program called EventGhost and it does allow python scripting within it and can also pass keyboard commands to MC.

Any ideas on how to program a button on my remote to get it to go to the Home Page of Theater View?

Thanks
Logged
"You are not a beautiful or unique snowflake." -  Just a very big snowball

raym

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 3583

This MCC command will do what you want :-

Code: [Select]
MC14.exe /mcc 22001,1
Test it out in a command prompt (with MC running).

What I do with commands like these normally is wrap them up in a simple script - .bat or .vbs for instance - and assign the required remote button to it. I'm assuming your remote software provides this feature. Most do. Below is an example vb script. Copy and past the code into a file called something like "TViewHome.vbs" :-

Code: [Select]
Set wshShell = CreateObject("WScript.Shell")

wshShell.run "MC14.exe /mcc 22001,1" 

Set wshShell = nothing

Cheers.
Logged
RKM Smart Home - www.rkmsmarthome.com.au
Z-Wave Home Automation

datdude

  • MC Beta Team
  • Citizen of the Universe
  • *****
  • Posts: 2215

Cheers Indeed!
Logged
"You are not a beautiful or unique snowflake." -  Just a very big snowball
Pages: [1]   Go Up