Hello:
I want participants to freely input their thoughts after watching a video. I want them to engage for at least X minutes with the task. Checking some old posts in the forum, I found something that might do it (code adapted below):
https://forums.millisecond.com/Topic17268.aspxHowever, when I try to run this code, it returns:
Missing '{'
pointing to the line with the isvalidresponse command.
Since the post is more than 10 years old, I wonder if this code is still valid when using Inquisit 7?
Any help will be greatly appreciated.
EN
--
<text a>
/ items = ("Type something.")
</text>
<text b>
/ items = ("You can move on now.")
</text>
<openended myopenended>
/ stimulustimes = [0=a; 15000=b]
/ isvalidresponse = [openended.myopenended.latency >= 15000]
/ position = (50%, 60%)
/ beginresponsetime = 0
</openended>
<block myblock>
/ trials = [1=myopenended]
</block>
// --------------------------------------
// EXPERIMENT DEFINITION
// --------------------------------------
<expt main>
/blocks = [1=myblock]
</expt>