I'm still trying to get my remotes to behave they way I want them to. Ideally, my remote would be in non-toggle mode (since I cannot update its state) then when a button is pressed, it would toggle the state of the responders it was connected to. For example, I press the e button and if the light is on, it turns off; if the light was off it turns on. I tried writing a program that had a Condition saying
if
Control 'remote e' is switched On
And Status 'light' is not Off
Then
Set 'light' Off
Else
Set 'light' On
What happens is the light cannot be turned off. It dims for a moment then turns on again. It appears that the Control statement looks at the state of the button on the remote, not the action of pressing the button. I'd like to know when the button has been pressed, not just its current state. Can that be done? Any other ideas on how to accomplish what I'm trying to do with my remote? Any help is greatly appreciated.
~Pat