Hey UXPin community,
Wondering if anyone can help me with a 12 hour (US) time scale for the time() expression. The typical HHMM doesn't appear to work, as I keep seeing 24 hour clock function as well as the seconds in the display. Any advice would be rad!

Hey Aaron,
Try defining time format in lowercases ("hh:mm"); this should return a 12h clock.
However, this won't add AM/PM periods. You would need to add the text "AM/PM" next to "00:00" and set up additional canvas interactions:
regex(time("hh:mm"), "^([1-9]|0[1-9]|1[0-2]):[0-5][0-9] ([AaPp][Mm])$")
is false -> Set content of "AM/PM" -> as value: AMregex(time("hh:mm"), "^([1-9]|0[1-9]|1[0-2]):[0-5][0-9] ([AaPp][Mm])$")
is true -> Set content of "AM/PM" -> as value: PMLet me know if you have any questions!