getScale(id).settings.default( value ) (since beta 0.3)
Makes a value selected by default when printing the scale element. You can pass either an index or a text value as value.
Note that sliders necessarily have a default value. If you do not use .settings.default to specify one, the central one will be used (or next to central if the number of possible values is odd).
Example:
[js highlight=”4″ try=”true”]
newScale(“score”,   “Terrible”, “Bad”, “Good”, “Terrific”)
    .settings.before( newText(“left”, “The last movie I saw was “) )
    .settings.labelsPosition(“top”)
    .settings.default(“Terrific”)
    .print()
[/js]
Adds a scale with 4 horizontally aligned radio buttons to the screen, with their respective labels appear on top of them, selects the right-most button by default, and waits for a click on a radio button.