Author Topic: Is it possible to have the mini-clock appear on non-built in screens?  (Read 1204 times)

stickyshed

  • Jr. Member
  • **
  • Posts: 64
    • View Profile
For example, pre-tourney I have a couple of custom screens for chip breakdowns, prize pool etc. Whilst the game is in countdown, it would be cool if the mini-clock appeared on those screens as well as the standard built in ones (Player Rankings, Schedule, Seating List etc).

This isn't a biggie by any means - at the moment I get by by having countdown clock/start time cells and token on each of my screens, so if it isn't just something I've missed, don't worry about it.

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6216
    • View Profile
Re: Is it possible to have the mini-clock appear on non-built in screens?
« Reply #1 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:

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.
« Last Edit: March 11, 2023, 01:11:39 PM by Corey Cooper »

stickyshed

  • Jr. Member
  • **
  • Posts: 64
    • View Profile
Re: Is it possible to have the mini-clock appear on non-built in screens?
« Reply #2 on: March 13, 2023, 03:25:20 AM »
Yep that's pretty much perfect.  Thanks - again - for your continued efforts.