
Announcements
UpdateContext(
{
varOKCode: "356",
varCode: Blank(),
varTryNo: 0
}
)
UpdateContext({varCode: varCode & Self.Text});
If(
Len(varCode) = 3,
If(
varCode = varOKCode,
Navigate(YourNextScreen),
If(
varTryNo > 2,
Notify("Too many attempts"),
Notify("Try Again");
UpdateContext(
{
varCode: Blank(),
varTryNo: varTryNo + 1
}
)
)
)
)