I have a label that is visible (unsaved changes warning) when changes are made to text box. Popup works fine, but if I delete the changes I have made in a text box, the warning popup stays visible. Is it possible to detect if contents of a textbox was set back in the original state?
Label.visible = NeedsSaved3
TextBox.OnChange = Set(NeedsSaved3, true)
Button that saves changes, OnSelect= Set(NeedsSaved3, false)