View Single Post
Old 05-26-2020, 05:42 PM   #9349
Geoff Waddington
Human being with feelings
 
Geoff Waddington's Avatar
 
Join Date: Mar 2009
Location: Dartmouth, Nova Scotia
Posts: 11,258
Default

Quote:
Originally Posted by siniarch View Post
Geoff,

I'm not sure exactly if what you mean is what I did.

In my "Zone Home" I have my SENDS button perform a couple actions and then the third action is "GoZone" to a smaller Zone at the end not loaded on the Home Zone. In this Zone, the SENDS button performs some different commands than the SEND button does in the Home Zone. But the last command is a "GoZone Home" therefore resetting the SENDS button to it's original state/function. Is this what you mean?
No, all of that is fine.

Code:
Zone "ZoneA"
       SomeWidget SomeAction
ZoneEnd

Zone "ZoneB"
        Shift+SomeWidget SomeOtherAction
ZoneEnd
I think going to ZoneB should "take over" SomeWidget.

Only the Shifted behaviour "SomeOtherAction" should work.

SomeWidget should cease to trigger SomeAction because we are now in ZoneB.

If we want both, this is what we need:

Code:
Zone "ZoneC"
       SomeWidget SomeAction
       Shift+SomeWidget SomeOtheAction
ZoneEnd
Make more sense now ?
__________________
To install you need the CSI Software and Support Files
For installation instructions and documentation see the Wiki
Donate -- via PayPal to waddingtongeoff@gmail.com
Geoff Waddington is offline   Reply With Quote