Welcome to Decent Sampler Q&A, where you can ask questions and receive answers from other members of the community.
0 votes

This is my first time making a represent but I'm having this issue where, after loading it in, I get an error message for every sample. Would this be an issue with my samples or the code itself? My samples are 48k24b at various lengths. My script looks something like this in the <groups> section

<groups tag="Family Piano" attack="0.0" decay="25" sustain="1.0" release="0.430" volume="1.0dB">

<group tags="Family Piano" volume="0.0dB" env_Sustain="1.0">

<sample rootNote="9"  loNote="9" hiNote="9"   loVel="1" hiVel="127" seqPosition="1" path="Samples\0A-1.wav" />

<sample rootNote="10" loNote="10" hiNote="10" loVel="1" hiVel="127" seqPosition="1" path="Samples\0A#-1.wav" />

<sample rootNote="10" loNote="10" hiNote="10" loVel="1" hiVel="127" seqPosition="2" path="Samples\0A#-2.wav" />

<sample rootNote="10" loNote="10" hiNote="10" loVel="1" hiVel="127" seqPosition="3" path="Samples\0A#-3.wav" />

<sample rootNote="10" loNote="10" hiNote="10" loVel="1" hiVel="127" seqPosition="4" path="Samples\0A#-4.wav" />

(conti...)

</Group>

</Groups>

in Sample Creation by Sean Scott (120 points)

1 Answer

+1 vote
The dash is in the wrong direction/wrong dash sign.

You're writing Samples\0A#-4.wav but it should be writen Samples/0A#-4.wav

/ is the correct dash sign.
by gtrdrumsplayerduarte-8743 (330 points)
...