Group: Administrators
Posts: 13K,
Visits: 104K
|
If you run your two <surveypage>s as trials in a <block>, you should be able to use the <block>'s /bgstim attribute to have the video playing in the background without interruption.
<block myblock> / bgstim = (myvideo) / trials = [1=a; 2=b] </block>
<video myvideo> / items = ("video.mp4") </video>
<surveypage a> / questions = [1=mytextbox] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<surveypage b> / questions = [1=mycheckboxes] / showpagenumbers = false / showquestionnumbers = false </surveypage>
<textbox mytextbox> / textboxsize = (20%, 5%) / position = (40%, 80%) </textbox>
<checkboxes mycheckboxes> / options = ("A", "B", "C") / size = (20%, 5%) / position = (40%, 80%) / orientation = horizontal </checkboxes>
|