PennController for IBEX › Forums › Support › adding comprehension quesiton to self paced reading task › Reply To: adding comprehension quesiton to self paced reading task
		January 6, 2023 at 4:12 pm
		
		#9836
		
		
		
	
 Jeremy
JeremyKeymaster
		
		
	Hi Doğan,
Apologies for the late reply. The native Ibex controller called DashedAcceptabilityJudgment readily provides these two options. Here’s an example of a PennController trial using it:
newTrial(
    newController("DashedAcceptabilityJudgment", {
        s: "While Alex was watching TV, Sue was washing the dishes",
        mode: "self-paced reading",
        q: "Who was watching TV?",
        as: ["Alex", "Sue"]
    })
        .log()
        .print()
        .wait()
)
Jeremy