View Single Post
Old 05-26-2020, 06:25 PM   #9352
siniarch
Human being with feelings
 
siniarch's Avatar
 
Join Date: Jun 2018
Posts: 705
Default

Quote:
Originally Posted by Geoff Waddington View Post
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 ?
Oh, this makes perfect sense. It might add a line of code in ZoneC but the amount of time saved going to look through ZoneA or any Zone that may have that "SomeWidget SomeAction" would more that justify it. Keep things nice and tidy.
siniarch is offline   Reply With Quote