End Time in Performance View

I see that you can add the current time (in 24 hour format) and I can see time left - but I don’t see a way to see projected end time. Is that possible so I don’t have to do math on the fly?

Hey @KevinP,

There isn’t a built-in view that shows the projected end time, but you could build one easily using Canvas (available in Pro).

Go to Canvas, and add a Label element with this value:

${new Date(now() + osc("/setlist/remainingTimeInSet") * 1000).toLocaleTimeString()}

That takes the current time, adds the remaining setlist time, and displays it as a clock time .
It updates automatically as you go through the show.

Let me know if that works for your use case!

Thanks, I didn’t buy pro as the majority of the features are things I really don’t need. No other way to make this work?

Hey @KevinP,

I’m afraid Canvas is the only way to do this at the moment.
That said, I’ll pass this along as a feature request.

Hope that helps!

is there a way to change the clock format to 12 hour instead of 24?

Hey @KevinP,

If you click on the clock in Performance View, it opens a fullscreen view with a toggle button in the top-left corner that switches between 12-hour (AM/PM) and 24-hour format.

Hope that helps!