Hi guys, I have a very simple rule to check if my windows & doors are all closed. Currently, if at least one window is open, I get a notification that says exactly that. However, I want to change it to a more specific notification that lists all those windows that are open.
I thought about creating a string variable where I would keep appending names of windows if they were open. So something like:
If Window1 is open Then append to OpenWindow ", Window1".
However, I can't seem to be able to find an easy way to append -- it's all either replace or overwrite.
What might be a way to achieve what I am trying to achieve...?
TIA!