$Score

This feature is available in Broadcast Pro and Broadcast Enterprise only.

The $Score reference is not a true reference that can be entered in a page.  Instead, other references such as $Run.Score and $ScoreList are used to retrieve a Score reference.

For more information on creating a high score list, read the following article:

How to Create a High Score List

$Score Properties

$Score properties represent the posted score and a set of modeler-defined metrics..

Scores are saved by the URL parameter / form field FD_action with a value of "post_score".  The model variable "Score" is saved, as are 5 additional numbers in variables "Metric1", "Metric2", "Metric3", "Metric4", and "Metric5".  Each variable is saved as a raw number (for use when comparing with other numbers in #if directives) and with the appropriate number formatting for that variable (as specified in the model).   If a score is not set, the value is 0, and the formatted value is undefined.  

Example:

 

Scores (0 to 10 scale)
#foreach ($Score in $ScoreList)
User: $Score.Run.EndUser.LoginId   Score: $Score.FormattedScore    Revenue: $Score.FormattedMetric1
#end

 

 

Example Results:

 

Scores (0 to 10 scale)
User: jsmith   Score: 10    Revenue: $100,000
User: ajones   Score: 8     Revenue: $99,990
User: ajones   Score: 6     Revenue: $200
User: tiuzzo   Score: 4     Revenue: $55
 

 

Specifically, a $Score reference provides the following numerical properties:

Score

Metric1

Metric2

Metric3

Metric4

Metric5

 

In addition the following properties give formatted versions of the same numbers.

FormattedScore

FormattedMetric1

FormattedMetric2

FormattedMetric3

FormattedMetric4

FormattedMetric5