[solved] Randomising questions within a sequence
Hi, just started using Open Sesame, however have very little experience with this kind of thing!
I want to present a series of problems, which i have successfully created within a sequence as text input responses, however while the program runs fine as a list in the order i created the problems, i would like to run the questions in a randomized order.
I assume this is possible, what is the simplest way??
Comments
Hi RichardSteel,
I'm not very experienced either, and depending on what exactly is to be displayed I don't know if I understand you correctly but I hope this helps:
One way (depending on if you use forms) would be to randomize the colums list like this:
...
For more info on using forms you can have a look at this:
http://osdoc.cogsci.nl/forms/form-functions/
http://osdoc.cogsci.nl/forms/custom-forms/
Hope this is of some help for you,
Daniel
Hi - thanks for the response, however i'm not using forms. What i have is a list of questions contained within a sequence:
So each question exists on a separate page created using the text input function to create a simple question and answer. All this has been created using the GUI.
So, what i would like to do is present the text input screens in a random, or shuffled order for each participant.
is this possible?
Hi Richard,
Refuzee's example shows how to randomize the order of widgets as they appear on a form. A useful tip for sure, but somewhat different from what you need in this particular situation.
The order of
sequenceitems cannot be randomized. Onlyloops can have a random order. So what need is to combine a random-orderloop, with 'Run if' statements in a sequence item. First, you create a loop that has a variable[my_item], which specifies the item that you want to run on each cycle, like so:In this loop (as item-to-run), you add your
sequence. But each time that thesequenceis executed, you cherry-pick the item that you actually want to run, like so:Does that make sense?
Cheers!
Sebastiaan
Check out SigmundAI.eu for our OpenSesame AI assistant!
Yes it makes sense, and works perfectly!
Many thanks
Richard