Presenting taks using latin square

For info, @jderrfuss you don’t need to know the order of things in the dlg. The data from that dialog is always stored as a dictionary called expInfo and you can fetch specific entries by name like:

expInfo['participant']

and, of course, any other things you put there will work fine too. For instance you could add an entry to the dialog for “group” (0,1,2) and use that in your conditions filename like this:

$"conditions%i.xlsx" %(expInfo['group'])

But this is just icing. Glad you got the key problems sorted,
Jon

2 Likes

Ha, I suspected that this would be possible, but didn’t realise that expInfo has this information. Thanks, Jon! :slight_smile:

Jan

Glad it works! :slight_smile:

Jan