+x+xThank you Dave! Can you also tell me how I can play the audios for each trial?
You display <sound> stimuli just like any other type of stimulus, be it <text>, <picture>, <shape> or <video>. Add the sound stimulus to a <trial>'s /stimulustimes or -frames, at the time you want it played.
It's not entirely clear when, exactly, you want those audios played, but I'm guessing you want something like this:
<sound whats_card>
/ items = ("what_card.wav")
/ playthrough = true
</sound>
<sound can_u_count>
/ items = ("CanUCount.wav")
/ playthrough = true
</sound>
being the two audios, and the trial playing those back one after the other before allowing the subject to continue.
<trial showpicture>
/ stimulustimes = [0=stimuli_display, whats_card; 2000=can_u_count; 5000=continue]
/ validresponse = (continue)
</trial>
Change the timings as needed if you want a longer or shorter pause between the two sounds.