1
Help Me / Re: Is it possible to have the mini-clock appear on non-built in screens?
« on: March 10, 2023, 03:56:49 PM »
It's easy to enable, just didn't think anyone would want it on those screens. In the meantime, you can almost fake it. Create a new cell, give it a name and the following Contents:
It will always display the round number, even on breaks, and it won't flash PAUSED when paused or show GAME OVER after the tournament, and the button always stays as the "Play" symbol (not the "Pause" symbol when running). But it's functional.
Code: [Select]
<div style="left: 0px; top: 0px; position: fixed; z-index: 999999; font-family: Segoe UI; color: #000; border: 1px solid #000; border-radius: 2px; padding: 4px; background: #fff;">
<div style="position: relative;">
<div>
<div style="width: 131px; margin: auto; padding-bottom: 3px; text-align: center; white-space: nowrap; font-size: 19px;">Round <round></div>
<div style="position: relative; margin: auto; padding-bottom: 3px; text-align: center; white-space: nowrap; font-size: 16pt;">
<div style="width: 131px; margin: auto; padding-bottom: 3px; text-align: center; white-space: nowrap; font-size: 19px;"><hours>:<minutes>:<seconds></div>
</div>
<div hidefocus="true" style="padding: 3px; border: solid 1px transparent; border-radius: 2px; background: transparent; cursor: pointer; margin: auto; width: 90%; text-align: center; font-size: 16px;"<action src="click" type="Clock">>
<i class="fas fa-play"></i>
</div>
</div>
</div>
</div>
It will always display the round number, even on breaks, and it won't flash PAUSED when paused or show GAME OVER after the tournament, and the button always stays as the "Play" symbol (not the "Pause" symbol when running). But it's functional.