yea, it's rude of me to keep throwing up trivial questions. i do apologize, and i really appreciate the help as I have until the 11th of december to get this figured out for my computer art project.
I have got through the manuals and examples quite a bit today, and i am running into another problem:
I'm trying to read sound files and manipulate their frequencies and speeds via the coordinate readouts from my camera. My goal is to be able to trigger each sound with a conditional statement involving my x/y coordinate readouts (i.e. if x <= 4 then read this file1.aif, if x >= 4 then read file2.aif). I have been able to accomplish this to an extent, but I only want the sound files to be reloaded every 30 seconds or so. As of now, my program is constantly reloading the sounds so there is no time to experiment with the sound before it's either reloaded or loaded the different sound.
my computer's camera is sending x/y coordinates to my pure data program. I have multiplied and rounded the numbers using the int that you suggested..this way, the values in the x and y category will range from 0-9. from there, I am connecting those numbers to the [moses 4] command (this sends data that is less than the numeric value to one side, and data that is greater than to the other side). each of my [read *audio file path*] are connected to a different output of the [moses] command, so, depending on my x coordinat location (0-9), that will determine what sound is played. I believe i need to use a combination of a delay and a timer with my moses in order to control the number of times it is telling the program to read the sound files...i can't wrap my head around how to do it though...the example counter that counts from 1-10 seems like it might be the way to go, but i need a way to implement the delay with the moses so that the moses command only sends out data every so many seconds rather than constantly..
does that make any sense?
i can attach the pd file..that might offer more info...thank you again for the help