Group: Administrators
Posts: 13K,
Visits: 104K
|
You need to be more specific. How many trials per block? Should item selection be reset between blocks? etc.
In general, what you'll want to do is: (1) If you haven't already done so, work through the tutorials in the Inquisit documentation to learn the basics of Inquisit syntax. (2) Based on the knowledge acquired in (1), work through the original AAT script until you sufficiently understand what it does / how it works. The comments included in the script will help with that. If you have trouble understanding any specific portion of the code, don't hesitate to ask about it here. (3) Once you're done with (2), you should be able to modify the script according to your needs.
Some further remarks: The <expt> elements in the AAT run three blocks: <expt> ... / blocks = [1 = SequenceGenerator; 2 = practice_AAT; 3 = AAT] ... </expt>
<block AAT> is the "test" block. It runs 80 AAT trials.
<block AAT> / onblockbegin = [values.index = 0] / trials = [1 = instructions; 2-81 = AAT_start] </block>
You can either add additional <block> elements to the script and run them via the <expt>s or run <block AAT> several times. You ought pay attention to any variables used throughout the script (<values> entries; e.g. values.index in the above) and make sure you either appropriately reset them between blocks or keep them intact. To understand those, refer to (2) above.
|