Ok, I followed all the instructions for <include> i.e. the syntax, and also from this page: (http://www.millisecond.com/support/docs/v3/html/howto/multiplescripts.htm), but I'm still getting an error when I test online (and also getting a major headache lol as I'm sure you are too from all my posts). Here are examples of one set of my scripts (i.e. the batch, the include script, the script for the MOV video, and the script for the WMV video):
Batch:
<batch GroupHN>
/ subjects = (1 of 5)
/ file = "Consent.iqx"
/ file = "SoundTest.iqx"
/ file = "Demographics.iqx"
/ file = "Emotions1.iqx"
/ file = "Stroop1.iqx"
/ file = "HN.iqx"
/ file = "Emotions2.iqx"
/ file = "Stroop2.iqx"
/ file = "Part2.iqx"
</batch>
Include script:
<defaults>
/ windowsize = (90%, 90%)
</defaults>
<expt>
/ blocks = [1=HNm; 2=HNw]
</expt>
<include>
/precondition = [computer.platform == "windows"]
/file = "HNvidWMV.iqx"
</include>
<include>
/precondition = [computer.platform == "mac"]
/file = "HNvidMOV.iqx"
</include>
MOV video script:
<block HNm>
/ trials = [1=HNvidm]
</block>
<trial HNvidm>
/ stimulustimes = [0=HNvidm]
/ response = noresponse
/ timeout = 1
</trial>
<video HNvidm>
/ items = ("High Negative.mov")
/ playthrough = true
/ position = (50%, 50%)
/ size = (50%, 50%)
</video>
WMV video script
<block HNw>
/ trials = [1=HNvidw]
</block>
<trial HNvidw>
/ stimulustimes = [0=HNvidw]
/ response = noresponse
/ timeout = 1
</trial>
<video HNvidw>
/ items = ("HN.wmv")
/ playthrough = true
/ position = (50%, 50%)
/ size = (50%, 50%)
</video>