Millisecond Forums

Wait command

https://forums.millisecond.com/Topic24692.aspx

By yaz - 5/2/2018

Hello,

Could you please help me find a way to enter a two minute wait command <openended prime>
For this prime, the participants need to type the text in the box and then press the button to take them to the next page of the experiment.
Could you possibly help me with allowing the participant to type the text in the box but not allowing them to press the button until two minutes have elapsed. 
Thank you for your help in advance. 

<text prime>
/ numitems = 1
/ items = ("Name of car")
/ color = (0,0,0)
/ position = (50,20)
</text>
<openended prime>
/ stimulustimes = [1 = prime]
/ buttonlabel = ">> CLICK on THIS FIELD to finish and to continue, please use the MOUSE >>"
/ position = (50, 80)
/ charlimit = 2000
/ linelength = 50
/ numlines = 20
/ mouse = true
/ pretrialpause = 500
/ required = true
</openended>
By Dave - 5/2/2018

yaz - Wednesday, May 2, 2018
Hello,

Could you please help me find a way to enter a two minute wait command <openended prime>
For this prime, the participants need to type the text in the box and then press the button to take them to the next page of the experiment.
Could you possibly help me with allowing the participant to type the text in the box but not allowing them to press the button until two minutes have elapsed. 
Thank you for your help in advance. 

<text prime>
/ numitems = 1
/ items = ("Name of car")
/ color = (0,0,0)
/ position = (50,20)
</text>
<openended prime>
/ stimulustimes = [1 = prime]
/ buttonlabel = ">> CLICK on THIS FIELD to finish and to continue, please use the MOUSE >>"
/ position = (50, 80)
/ charlimit = 2000
/ linelength = 50
/ numlines = 20
/ mouse = true
/ pretrialpause = 500
/ required = true
</openended>

You can achieve this via /isvalidresponse:

<openended prime>
/ stimulustimes = [1 = prime]
/ buttonlabel = ">> CLICK on THIS FIELD to finish and to continue, please use the MOUSE >>"
/ position = (50, 80)
/ charlimit = 2000
/ linelength = 50
/ numlines = 20
/ mouse = true
/ pretrialpause = 500
/ required = true
/ isvalidresponse = [openended.prime.latency >= 120000]
</openended>

The openended then will not allow participants to move on before 2 minutes (or more) have elapsed.

By yaz - 5/6/2018

Thank you very much.