@mr-dang
Another question for you - how can I add another If statement to the easing equation?
I have tried a variety of methods yet nothing is actually triggering the second If statement. Any thoughts?
OnSelect
Your code:
Set(Show, !Show);
If(!Show, Set(hide, true))
My atteempts:
Set(Show, !Show);
If(!Show,
Set(hide, true), Set(keypadRaise, false))
Set(Show, !Show);
If(!Show,
Set(hide, true); Set(keypadRaise, false))
Set(Show, !Show);
If(!Show, Set(hide, true));
Set(Show, !Show);
If(!Show, Set(keypadRaise, false))
Set(Show, !Show);
If(!Show, Set(hide, true));
If(!Show, Set(keypadRaise, false))
Set(Show, !Show);
(If(!Show, Set(hide, true)));
(If(!Show, Set(keypadRaise, false))
)