Execute built in buttons from macro like Activities, Home
Moderator: Moderators
-
michaeljc70
- Posts: 34
- Joined: Fri Feb 05, 2016 5:10 pm
Execute built in buttons from macro like Activities, Home
I have a Nevo C2. I am wondering if there is a way in a macro to go to "execute" the fixed buttons on the remote to go to Devices, Activities or Home from a macro.
If you use RMIR to create a macro, you will find that the Devices, Activities and Home buttons are included in the list of available buttons to include in the macro sequence. However, only the Home button works and it needs to be the last button in the sequence. This limitation isn't a bug in RMIR, it is just the way the remote seems to work.
Graham
This should do it: change the second line in the [Buttons] section frommdavej wrote:Is there any way to use the RDF to prohibit those buttons from being selected in a macro? This seems to come up a lot.
Code: Select all
Home=$02:AllBind+groupLCD, Favorites, Activities, Devices,Code: Select all
Home=$02:AllBind+groupLCD, Favorites=$03:All+groupLCD, Activities, Devices,Graham
I appreciate the effort but when I changed the RDF it did not seem to make any difference for me. I could still select the Activities button and Add it in a macro.
It is not a major issue for me as I learned on this board what cannot be done in Nevo macros, but thought I should let you know that it did not seem to make any difference for me
I tried adding Activities to an existing macro and it let me
I tried creating a new macro and start with Activities and it let me
I am using RemoteMaster v2.03 build 14
I can do some more tests or trials if it helps
Rick
It is not a major issue for me as I learned on this board what cannot be done in Nevo macros, but thought I should let you know that it did not seem to make any difference for me
I tried adding Activities to an existing macro and it let me
I tried creating a new macro and start with Activities and it let me
I am using RemoteMaster v2.03 build 14
I can do some more tests or trials if it helps
Rick
-
michaeljc70
- Posts: 34
- Joined: Fri Feb 05, 2016 5:10 pm
Thanks. Did what I wanted it to. When I power down an activity it brings me back to the Home screen.mathdon wrote:If you use RMIR to create a macro, you will find that the Devices, Activities and Home buttons are included in the list of available buttons to include in the macro sequence. However, only the Home button works and it needs to be the last button in the sequence. This limitation isn't a bug in RMIR, it is just the way the remote seems to work.
Sorry about that. You are right. It needs to be:rickety wrote:I appreciate the effort but when I changed the RDF it did not seem to make any difference for me. I could still select the Activities button and Add it in a macro.
Code: Select all
Home=$02:AllBind+groupLCD, Favorites=$03:All, Activities, Devices,Graham