FyingEaglE
(FlyingEaglE)
1
if i write a rule where i did more than one with an OR in when clause, how to get the item which triggers the rule?
rule "abc"
when
itemA receive command OR
itemB receive command OR
itemC receive command
then
// who triggered this rule ...
wend
rossko57
(Rossko57)
2
You can’t. But here is a workaround technique using Groups
FyingEaglE
(FlyingEaglE)
3
hmm, ok, that’s definitly a con for OH …