I am using documentation found @ https://gitlab.com/creare-com/tabsint/-/blob/master/src/res/protocol/schema/definitions/page.json#L106 to design a TabSINT page which will play a .wav file as a conditional follow on. Can you see an obvious error in the following lines of code?
"followOns": [
{
"conditional": "!result.correct",
"target": {
"id": "wav_test",
"wavfiles": {
"path": "m1_02_mil.wav",
"playbackMethod": "arbitrary",
"useCommonRepo": false
}
}
}
]
I would also like to add in a image (.png file) while the audio file is played. On it’s own, I was able to get the .jpg file to display correctly. But I could use assistance in merging these two actions together. Thank you.
"followOns": [
{
"conditional": "!result.correct",
"target": {
"id": "jpg_test",
"image": {
"path": "m1_02_mil.jpg",
}
}
}
]