Group: Forum Members
Posts: 6,
Visits: 32
|
In a task I'm trying to code, the respondents need to touch/click each of the letters in the options. For instance, when I present them with four options on the screen ("k", "t", "l", "?"), they will need to touch/click each of the letters ("k", "t", and "l"). I know how to code single-answer questions but I'm not sure how to code this. Following is the codes I have so far. Thank you very much in advance for your help!
<trial example1p> / stimulustimes = [1000 = choice1_example1p, choice2_example1p, choice3_example1p, choice4_example1p] / beginresponsetime = 1000 / responseinterrupt = immediate / validresponse = (choice1_example1p, choice2_example1p, choice3_example1p, choice4_example1p) ...
<text choice1_example1p> / items = ("g") / position = (12.5%, 50%) / size = (23%, 16%) / txbgcolor = yellow / txcolor = black / fontstyle = ("Arial", 15%, false, false, false, false, 5, 1) / erase = true(white) </text>
<text choice2_example1p> / items = ("k") / position = (37.5%, 50%) / size = (23%, 16%) / txbgcolor = yellow / txcolor = black / fontstyle = ("Arial", 15%, false, false, false, false, 5, 1) / erase = true(white) </text>
<text choice3_example1p> / items = ("j") / position = (62.5%, 50%) / size = (23%, 16%) / txbgcolor = yellow / txcolor = black / fontstyle = ("Arial", 15%, false, false, false, false, 5, 1) / erase = true(white) </text>
<text choice4_example1p> / items = ("3") / position = (87.5%, 50%) / size = (23%, 16%) / txbgcolor = yellow / txcolor = black / fontstyle = ("Arial", 15%, false, false, false, false, 5, 1) / erase = true(white) </text>
|