INTERACT FORUM

Networks and Remotes => Media Network => Topic started by: trentino on March 29, 2011, 10:25:22 pm

Title: WebRemote - How to add Theater View link (example please)
Post by: trentino on March 29, 2011, 10:25:22 pm
Hello,

I just started using WebRemote -- When I play a video file it starts playing on my computer monitor -- I need the ability to switch to Display or Theater View mode from WebRemote.  I know this can be added with via a WebEngine command but would appreciate an example of how I could insert it into the playingnow.html file.

Thanks,
Trent
Title: Re: WebRemote - How to add Theater View link (example please)
Post by: olinbg on March 31, 2011, 08:46:41 am
Can't verify this works (at work), but here's the MCC command you need:

22000 MCC_TOGGLE_MODE -1: Next Mode, 0: Standard, 1: Mini, 2: Display, 3: Theater View, 4: Cover View

So to switch to theater view, a link something like this:
Code: [Select]
<a href="javascript:download('MCWS/v1/Control/MCC?Command=22000&Parameter=3')">Theater View</a>

To switch to standard:
Code: [Select]
<a href="javascript:download('MCWS/v1/Control/MCC?Command=22000&Parameter=0')">Standard View</a>
Title: Re: WebRemote - How to add Theater View link (example please)
Post by: trentino on March 31, 2011, 12:18:18 pm
Thank you, thank you!  I will try this tonight.  This will also get me started with adding any other MCC functions I might need.

Trent