Dear Jeremy,
I am using the following code and I would like to edit the scale, in order to better fit it to the display – Ideally I would like to add some space between the options. Are you able to help me?
newText("<p>How violent was that sentence?")
.css("font-size","1.4em")
.print()
,
newText("<p>")
.css("font-size","1.4em")
.print()
,
newScale("judgment", "very violent", "violent", "less violent", "non-violent")
.css("font-size","1.2em", "center")
.log() // Record
.labelsPosition("top")
.before( getText("sentence") )
.size("font-size","1.2em")
.print()
.wait()
)