Changing button's label

Hello,

I'd like to set a button's label to "Jog 1" when its value is 0, and "Jog 2" when its value is 1.
It may be simple, but i can't figure out how to do that...

So... :wink: Thanks

In the label property:

#{@{this} == 1 ? "Jog 2" : "Jog 1"}

Advanced syntaxes - Open Stage Control

Syntax understood now :wink:

Thank you very much.