Reply To: adding comprehension quesiton to self paced reading task

PennController for IBEX Forums Support adding comprehension quesiton to self paced reading task Reply To: adding comprehension quesiton to self paced reading task

#9836
Jeremy
Keymaster

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