Page 1 of 1

Adding "else" condition when using Switch in KITe Java

Posted: Mon Mar 17, 2025 10:51 pm
by mj0012
When using the Switch option in KITe Java, is there an easy way to add an "else" condition? So, something that happens if none of the previous conditions have been met? Or would I have to switch to scripting to do that?

Re: Adding "else" condition when using Switch in KITe Java

Posted: Tue Mar 18, 2025 6:06 am
by Alexey Kolesnikov
You can add "Custom" condition with empty condition:
if [Custom] [<empty>] -> <action>

This action will be executed as "else" if you are using "exclusive" switch.

Re: Adding "else" condition when using Switch in KITe Java

Posted: Tue Mar 18, 2025 6:58 pm
by mj0012
Great, thank you so much!