Hi Jeremy:
Sorry for bothering you again for coding issues….
I have 2 tasks in each trial, and I wish to have each of them be presented on a new screen, not both of them on the same screen. However, if I use codes as below, though when task2 appears, task1 does not show up, but the position of task2 is not on the top of the screen, but in the lower half of the screen. This is a problem, because I have lots of instructions for task2, so I would like to have it presented on the whole screen, not just the lower half. I know in principle I can put the two tasks in two separate newTrials, but in that way I don’t know how to make randomization for ‘trials’ work..
Template("try_word_by_word.csv", row =>
newTrial("trials",
newTextInput("task1", "")
,
getButton("task1")
.wait()
.remove()
,
newTextInput("task2", "")
,
getButton("task2")
.wait()
.remove()
)
)
Thanks a lot!
Best,
August