Hi Alexandre,
Thanks for replying!
Currently, using things like anyType, not(), etc. makes me go through all of my fillers first, even though there are experimental items that come before it. So, an items variable with this like this:
[["condition 15a Q1", 1], "DashedSentence", {s: ["Il signore", "che", "ha sorpreso ", "il ladro ", "ha denunciato", "l'incidente."]},
"Question", {q: "Il signore ha sopreso il ladro. ",
as: ["Vero ",
"Falso "]}
],
[["condition 15b Q1", 1], "DashedSentence", {s: ["il signore ", "che", "il ladro ", "ha sorpreso ", "ha denunciato", "l'incidente."]},
"Question", {q: "Il signore ha sopreso il ladro. ",
as: ["Falso ",
"Vero "]}
],
[["condition 15a Q2", 1], "DashedSentence", {s: ["Il signore", "che", "ha sorpreso ", "il ladro ", "ha denunciato", "l'incidente."]},
"Question", {q: "Il ladro ha sorpreso il signore. ",
as: ["Falso ",
"Vero "]}
],
[["condition 15b Q2", 1], "DashedSentence", {s: ["il signore ", "che", "il ladro ", "ha sorpreso ", "ha denunciato", "l'incidente."]},
"Question", {q: "Il ladro ha sorpreso il signore. ",
as: ["Vero ",
"Falso "]}
],
["filler 5.0 Filler_Sub", "DashedSentence", {s: ["Michele ", "ha usato ", "la bicicletta", "mentre ", "il meccanico", "riparava ", "l'automobile."]},
"Question", {q: "Michele ha usato la bicicletta. ",
as: ["Vero ",
"Falso"]}
],
["filler 23.0 Filler_WH", "DashedSentence", {s: ["Marco ", "ha detto ", "che ", "i suoi fratelli", "sono già entrati ", "al cinema."]},
"Question", {q: "Marco è entrato al cinema. ",
as: ["Vero ",
"Falso"]}
],
[["condition 16a Q2", 2], "DashedSentence", {s: ["Il passeggero", "che", "ha chiamato", "il capotreno", "ha assistito", "ad un furto."]},
"Question", {q: "Il capotreno ha chiamato il passeggero. ",
as: ["Falso ",
"Vero "]}
],
[["condition 16b Q1", 2], "DashedSentence", {s: ["Il passeggero", "che", "il capotreno", "ha chiamato", "ha assistito", "ad un furto."]},
"Question", {q: "Il passeggero ha chiamato il capotreno.",
as: ["Falso ",
"Vero "]}
],
[["condition 16a Q1", 2], "DashedSentence", {s: ["Il passeggero", "che", "ha chiamato", "il capotreno", "ha assistito", "ad un furto."]},
"Question", {q: "Il passeggero ha chiamato il capotreno.",
as: ["Vero ",
"Falso "]}
],
[["condition 16b Q2", 2], "DashedSentence", {s: ["Il passeggero", "che", "il capotreno", "ha chiamato", "ha assistito", "ad un furto."]},
"Question", {q: "Il capotreno ha chiamato il passeggero. ",
as: ["Vero ",
"Falso "]}
],
["filler 13.0 Filler_Sub", "DashedSentence", {s: ["Daniele ", "ha venduto", "la macchina ", "perché", "la moglie ", "ne ha comprata", "una nuova."]},
"Question", {q: "La moglie di Daniele ha comprato una macchina nuova. ",
as: ["Vero ",
"Falso"]}
],
["filler 29.0 Filler_WH", "DashedSentence", {s: ["Serena ", "ha domandato", "se ", "la sorella ", "tornerà ", "in Italia."]},
"Question", {q: "La sorella di Serena ha chiesto qualocsa. ",
as: ["Vero ",
"Falso"]}
],
will skip all of my condition items and only print out fillers. It seems very odd because shouldn't they be printed in the order they occur? seq(anyType) does this for my instructions/practice/consent pages, but the items/fillers give me problems.