Graphics

 View Only
  • 1.  Adding A $ and Comma to Widget counter

    Posted 11-02-2016 17:40
    Hi all!! This is my first post! Yay!!

    Now for business, we're playing a game on our show where someone wins money by the thousands. Just wondering if there's a way to add a $ before the money and then a comma where it belongs. Also we do reach double digit thousands (IE 10,000). I'm guessing this is a visual logic thing but I can't figure it out. Thanks you guys and much appreciated!!


  • 2.  RE: Adding A $ and Comma to Widget counter

    Posted 11-03-2016 00:19
    You can do this in scripting. Right click on the text object and choose "Edit Script Events". Add this script to the OnSetText event.
    text = "$" + FormatNumber(Text)

    Hit F7 to compile the script.

    That should do it.
    #XPression