ChadJeffreyAnderson
ChadJeffreyAnderson
One workaround for this is to use a sequential action group that begins by saving `$(this:surface_id)` to a local variable, waits 10ms, then checks your condition against that local variable....
> While $(internal:b_text_1_2_3) is flexible it is absolute (no good for copy,paste,move) `$(internal:b_` can be made more button-agnostic with `$(internal:b_text_$(this:page)_$(this:row)_$(this:column))`, or any combination of variables and static numbers. For example,...
Very well! The PIN code entry not appearing was the bigger issue, so thanks for solving it. The other part I just came across while trying to replicate that. It's...
What is the 4.2 way of doing AM/PM? I'm currently using a variable with nearly the same expression.
I see, thanks. That's basically what I have: ``` concat( $(internal:time_h_12) + 0, // Trim leading zero ":", $(internal:time_m), ( $(internal:time_h) > 0 && $(internal:time_h) < 12 ) ? "am"...
I believe that would only give UTC, not adjusted for local time zone 😉
> `toLowerCase( secondsToTimestamp( timestampToSeconds( $(internal:time_hms) ), "h:mm a" ) )` Even this has a weird quirk. At noon, it reads "0:00 AM" and one second later, it's "0:00 PM"