Reply To: conditions in self-paced reading experiment

PennController for IBEX Forums Support conditions in self-paced reading experiment Reply To: conditions in self-paced reading experiment

#5064
iasmaa
Participant

What about now?

Template(row =>
newTrial(“trials”,
newText(“content”, row.S)
.print()

,
newKey(” “)

.wait()

,
getText(“content”)
.remove()

,
newController(“DashedSentence”, {s: row.DS})
.print()
.wait()
.remove()

,
newKey(” “)

.wait()

,

newText(“Answer the following quesion based on the dashed sentence you have just read”)
.print()

,
newScale(“yesnocorrect”, “Yes”,”No” )
.labelsPosition(“right”)
.keys()
.before( newText(row.CQ) )
.print()
.wait()
.remove()
.log()

,
newText(“Was the dashed sentence grammaticly correct?”)
.print()

,

newKey(” “)

.wait()

,
newScale(“correct”, 5)
.keys()
.before(newText(“completely incorrect”))
.after(newText(“completely correct”))
.print()
.wait()
.remove()
.log()
,

getText(“Was the dashed sentence grammaticly correct?”)
.remove()

,
newText(“would you replace the article used in the dashed sentence with another one?”)
.print()
,
newScale(“correct”, “The”, “A”, “An”, “No Article”)
.labelsPosition(“top”)
.before(newText(row.BMC))
.after(newText(row.AMC))
.print()
.wait()
.log()

)
.log( “correct” , row.Correct1)
.log( “correct” , row.Correct2)
.log( “correct” , row.Correct3)
)