PennController for IBEX › Forums › Support › conditions in self-paced reading experiment › Reply To: conditions in self-paced reading experiment
June 24, 2020 at 11:06 am
#5708
Jeremy
Keymaster
Hi,
If you want to insert a linebreak after each period, then you’ll need to implement an alternative method, because DashedSentence does not support linebreaks. If you’re only concerned that the sentence is too wide though, you can easily control your element’s width using size, like this:
newController("DashedSentence", {s: row.DS}) .print() .size("30em") .wait() .remove() .log()
Jeremy