Graphics

 View Only
  • 1.  Real time without using the widget

    Posted 12-10-2013 17:39
    So we do a time and temp bug on my show, and so far to get a real time update we have been using the Realtime Clock Widget. This is great and all, but during the single digit hours when we use this it displays the time with an extra zero at the head. (For example 6am is 06:00). It's not a huge deal, but that extra zero at the beginning kinda bugs me and some of my coworkers. I was wondering if anybody knew some way (maybe using the script events) to change it so that it reads "6:00". If anybody can help me with this it would be much appreciated. Thanks in advance!


  • 2.  RE: Real time without using the widget

    Posted 12-10-2013 17:50
    Kevin,

    If you edit the time format in the widget to H:MM instead of HH:MM to will not show the leading zeros.

    #XPression


  • 3.  RE: Real time without using the widget

    Posted 11-11-2016 22:41
    any idea how to change widget clock to show time based on 12 hours clock

    #XPression


  • 4.  RE: Real time without using the widget

    Posted 11-12-2016 18:54
    Use "H:NN:SSam/pm".

    If you don't want the AM/PM at the end of it, then use a script to strip the last two characters.

    Put this in the text objects OnSetText script:

    text = left(text, len(text)-2)
    #XPression