idunno
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2012
09:27 AM
How to Exit Channel
There are certain channels that are able to exit when you press the up button. How can I make my program exit using different buttons?
2 REPLIES 2

RokuMarkn
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2012
09:51 AM
Re: How to Exit Channel
The easiest way is to just return from your entry point function (main or RunUserInterface).
--Mark
--Mark

RokuRobB
Streaming Star
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2012
11:18 AM
Re: How to Exit Channel
You can use the msg.isRemoteKeyPressed() function to determine if a remote control key has been pressed. msg.GetIndex() will then return the code for the particular key that was pressed. You could then exit your channel in the event of a specific remote key press.