Reply To: How to present two lines on one page?

PennController for IBEX Forums Support How to present two lines on one page? Reply To: How to present two lines on one page?

#4994
Jeremy
Keymaster

Sorry, posting a new message because after re-reading your message I think I just realized that you want something slightly different. Would you be OK with having two DashedSentence back-to-back, like this?

newTrial(
  newController( "DashedSentence" , {s: ["Today is a very nice day!"]} )
    .print()
    .wait()
    ,
  newController( "DashedSentence" , {s: "So I went outside for a walk."} )
    .print()
    .wait()
)