I am trying to figure out how to have trials presented randomly but not having to define every single trial before hand. Basically I have 20 choices that participants must make between two options. I want these choices presented in random order and only once.
If I were programming this in anything else (presentation, realbasic, etc...) I would simply define an array like
Array X = (10, 20, 30, 40, 50, 60, 70, 80, 90, 100)
I would then shuffle array X so it is in random order and then work through replacing the parts needed with something like replace item = ArrayX[ n ] where n is a value that increases with each trial.
I dont see such a framework being possible in Inquisit in a straightforward way. Any thoughts on how to implement this?