Hello,
I use your library in a project and i have some trouble when i want to export an application.
When I compile, everything goes well (no error message) and when I run the program, I do not have the sound of notes generated with playNote() . However, when tested in the PDE IDE, it works perfectly.
For code that is simple, I do not excpetionnel, it gives, once cleaned, something like this:
Code:
...
SoundCipher sc;
int cptFrames;
...
setup() {
sc = new SoundCipher(this);
...
}
draw() {
...
cptFrames++;
if (cptFrames>frameRate/2) {
sc.playNote(200,30,1.0);
cptFrames=0;
}
...
}
There are a lot more code in my program but it would be unnecessary in this case because the rest operating normally.
I'm working on windows XP. If you have an idea, cause i don't know where the problem is.
Thanks for any help

.