Hello,
I am setting up an experiment in which appears a picture, a sentence, and an acceptability judgment scale, about the match of the picture with the sentence.
So I think I have managed to show pictures and sentences ( in the PCibex )
and I would like that under the image appears an acceptability judgment scale.
- How should I declare the scale? ( I would like something like a row of buttons that the participant can click)
"AcceptabilityJudgment", {s: " ", q: " ", as: ["1", "2", "3", "4", "5","6","7"], leftComment: "(very bad)", rightComment: "(very good)"}
]
PennController.ResetPrefix(null)
DebugOff()
Sequence(randomize("experimental-trial"), "send", "completion_screen")
// Experimental trial
Template("design.csv", variable =>
newTrial("experimental-trial",
newImage("target", variable.foto)
.size("25vw","25vw * getElementById('target').height/getElementById('target').width")
.print()
,
newText("sentence", variable.sentence)
.center()
.print()
,
//.center()
//.print()
//,
newButton("continue", "Proceed")
.print()
.center()
.wait()
.log()
)
)
// Send results manually
SendResults("send")
// Completion screen
newTrial("completion_screen",
newText("thanks", "Thank you for participating! You may now exit the window.")
.center()
.print()
,
newButton("wait", "")
.wait()
)
Thank you,
H.Pi.
--
You received this message because you are subscribed to the Google Groups "ibexexperiments" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ibexexperimen...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ibexexperiments/fa47f6aa-6083-4938-b0a1-a917d68d230bn%40googlegroups.com.