Hello!
I have a script with which people have to choose a picture for each block, and it will be better if the position of the mouse cursor don't influence their choice.
That's why I would like to put the mouse cursor in the center of the screen for each block. Is that possible please? I don't know where I can put something like ''position of the mouse cursor''.
A part of my script:
DEFAULTS
<defaults>
/ fontstyle = ("calibri", 2.5%)
/ screencolor = (235,235,235)
/ txbgcolor = (235,235,235)
/ txcolor = (0, 0, 0)
/ minimumversion = "3.0.0.0"
/ inputdevice = mouse
</defaults>
EXPERIMENT
<expt>
/ blocks = [1=instruction0; 2=ivm_explicit0; 3=instruction01; 4=ivm_explicit01; 5=instruction02; 6=ivm_explicit02]
</expt>
INSTRUCTIONS
<block instruction0>
/ trials = [1 = instruction0]
</block>
<block instruction01>
/ trials = [1 = instruction01]
</block>
<block instruction02>
/ trials = [1 = instruction02]
</block>
IMV EXPLICIT
<block ivm_explicit0>
/ trials = [1-1= noreplace (ivm_affective0)]
</block>
<block ivm_explicit01>
/ trials = [1-1= noreplace (ivm_affective01)]
</block>
<block ivm_explicit02>
/ trials = [1-1= noreplace (ivm_affective02)]
</block>
for example imv_affective0 (8 pictures of tea) :
<trial ivm_affective0>
/ stimulusframes = [1= picttea1, picttea2, picttea3, picttea4, picttea5, picttea6, picttea7, picttea8]
/ inputdevice = mouse
/ validresponse = (picttea1, picttea2, picttea3, picttea4, picttea5, picttea6, picttea7, picttea8)
/ posttrialpause=800
</trial>
for example instruction0:
<trial instruction0>
/ stimulustimes = [1=instruction0, mouseclick]
/ correctresponse = (lbuttondown)
/ errormessage = false
/ recorddata = false
</trial>
<text instruction0>
/ items = ("Please choose as quicly as possible the tea with lemon flavor
")
/ hjustify = left
/ size = (70%, 41%)
/ position = (50%, 45%)
/ valign = center
/ select = sequence
/ resetinterval = 20
/ txbgcolor = (235,235,235)
</text>
Thank you in advance,
Charlotte