Vielleicht hilft es, meinen Code für diese Aufgabe zu sehen...
Alle CD-, CT- und CE-Fragen sind Bilder, entweder welche wo man nichts antworten muss und das Bild nach 2000ms verschwindet, oder welche wo man Ja/Nein antworten muss.
Ich verstehe nicht, wieso der genau gleiche Code mit nur 18 Durchlaufen funktioniert (im Übungsteil) aber dann mit 96 nicht mehr, obwohl es genau gleich aufgebaut ist. Ausser es liegt eben daran, dass 96 loops zu viele sind.. wobei ich auch probiert habe, die Aufgabe in 3 Stücke zu teilen also je 32 Durchläufe am Stück im loop zu haben und dann in einem nächsten Schritt wieder nochmal 32 etc... aber klappt nicht.
<!-- Page 304 -->
<page ident="CD" intID="728">
<php intID="730"><![CDATA[
$arrCD = array(
0=>array('CD02'),
...
95=>array('CD01')
);
registerVariable($arrCD);
$plusss = array(
0=>array('CD03'),
....
95=>array('CD03')
);
registerVariable($plusss);
$encCD = array(
0=>array('CD05'),
...
95=>array('CT97')
);
registerVariable($encCD);
$plusss2 = array(
0=>array('CD04'),
...
95=>array('CD04')
);
registerVariable($plusss2);
$recCD = array(
0=>array('CD06'),
...
95=>array('CT98')
);
registerVariable($recCD);
$endCD = array(
0=>array('CE01'),
...
95=>array('CE96')
);
registerVariable($endCD);
$solutionCD = array(
'CE01_01' => 1,
...
'CE96_01' => 2
);
registerVariable($solutionCD);
$i = loopToPage('endCD', 96);
$set1 = $plusss[$i];
question($set1[0]);
]]></php>
</page>
<!-- Page 305 -->
<page ident="arrCD" intID="731">
<php intID="732"><![CDATA[
//Seite2 arrow
$i = loopIndex();
$set2 = $arrCD[$i];
question($set2[0]);
]]></php>
</page>
<!-- Page 306 -->
<page ident="encCD" intID="733">
<php intID="743"><![CDATA[
//Seite3 encode
$i = loopIndex();
$set3 = $encCD[$i];
question($set3[0]);
]]></php>
</page>
<!-- Page 307 -->
<page ident="plusplus" intID="744">
<php intID="745"><![CDATA[
//Seite4 plus2
$i = loopIndex();
$set4 = $plusss2[$i];
question($set4[0]);
]]></php>
</page>
<!-- Page 308 -->
<page ident="recCD" intID="746">
<php intID="747"><![CDATA[
//Seite5
$i = loopIndex();
$set5 = $recCD[$i];
question($set5[0]);
]]></php>
</page>
<!-- Page 309 -->
<page ident="endCD" intID="748">
<php intID="749"><![CDATA[
//Seite6
$i = loopIndex();
$set6 = $endCD[$i];
question($set6[0]);
]]></php>
</page>