Hi, thank you so much! I changed 'end' to where it says 'MTURK' now. And it works :)
//06 CONTROL
// Video Rotation
if (!isset($video)) {
$video = array(
'Video A', 'Video B', 'Video C', 'Video D', 'Video E'
);
shuffle($video);
put('VI11_01', $video[0]);
put('VI11_02', $video[1]);
put('VI11_03', $video[2]);
put('VI11_04', $video[3]);
put('VI11_05', $video[4]);
registerVariable($video);
$i = loopPage(count($video));
text($video[0], 'align=center', 'spacing=30');
}
question('VI01'); // RATING1
// Page Rotation
if (!isset($pages)){
$pages = array ('VI1', 'VI2', 'VI3', 'VI4');
shuffle($pages);
put('VI10_01', $pages[0]);
put('VI10_02', $pages[1]);
put('VI10_03', $pages[2]);
put('VI10_04', $pages[3]);
$pages[] = 'MTURK';
registerVariable($pages);
}
setPageOrder($pages);