Hello!
I have a simple self-paced reading experiment in which participants read a sentence and then choose which of two picture best represents the sentence they just read.
Participants receive feedback “Good job!” or “Nope!” based on the picture they select. However, the feedback text is small, so I was wondering whether there was a way to make it bigger. Here’s the relevant portion of the script:
newSelector()
.disableClicks()
.add( getImage(row.LeftPicture) , getImage(row.RightPicture) )
.keys( "A" , "B" )
.log()
.wait()
.test.selected( getImage(row.Target) )
.success( newText("Good job!").print() )
.failure( newText("Nope!").print() )
,
Thank you!
Lesley Smith