Group: Administrators
Posts: 13K,
Visits: 104K
|
Given your script's setup
<include> / precondition = [computer.platform=="win"] / file = "win_vids.iqx" </include>
<include> / precondition = [computer.platform=="mac"] / file = "mac_vids.iqx" </include>
*all* videos referenced in "win_vids.iqx" will be downloaded to Windows systems, but not those referenced in "mac_vids.iqx".
Conversely, *all* files in "mac_vids.iqx" will be downloaded to Macs, but not those referenced in "win_vids.iqx".
If you wanted to restrict this further to only those files pertaining to the given participant's condition, you'd have to extend the conditional <include> logic accordingly. See the attached example based on your script; I've shortened the trial duration and substituted the <video> elements with <text> elements for illustration purposes. It works the same with the actual videos and duration.
On an unrelated note, I'd recommend revising your <data> element:
<data> /file = "/Users/myninja/Documents/Sussex/PhD/Awe Project/Experiment 3/Data/Manipulation/Manipulation_rawdata.iqdat" / columns = [date, time, subject, group, stimulusnumber, stimulusitem, stimulusitem, stimulusitem] /separatefiles = true </data>
The file path referenced above *will not* exist on participants' system which can lead to issues, potentially even data loss.
|