Hi Chris,
I was wondering if I could get your help with playing audio (WAV) files on MWorks. I would like to put a long list of WAV file in a list/range replicator, but noticed the following compilation error:
Component ‘sound/wav_file’ is not allowed inside component ‘range_replicator’ [line 384, column 9]
- And here are two code snippets I’ve tried so far:
// snippet 1: audio only
range_replicator (
variable = filename
from = 0
to = num_original_videos - 1
step = 1
) {
wav_file ${filename} (
path = ‘filenames(audio/audio_*.wav)’
)
}
// snippet 2: audio only
list_replicator (
variable = filename
values = 'filenames(audio/audio_*.wav)'
) {
wav_file ${filename} (
path = ${filename}
autoplay = true
volume = 0
)
}
- I’m not sure if I’m not using the right syntax, or if sound/wav_file is not supported as an indexable stimulus group. Do you have any suggestions?
Thanks!
Yoon