[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] problem with SendReply for creating synths ?



On Dec 30, 2012 4:02 AM, "umberto torrez" <umberto.torrez@xxxxxxxxx> wrote:
>
> Hi, i need to create  a synth from a trigger from another synth, so im
> using SendReply in my synth that triggers and then i have a function
> in the language that creates the new synth
>
>
> But the problem i have is that when the function receives the trigger
> (from sendReply) , it doesnt create just one synth ( as it should be)
> but instead it start creating hundreds of synths until my server
> collapse.

How is SendReply being triggered? If SendReply is receiving hundreds of triggers, then it will send hundreds of messages to the language, and each message will cause the OSCFunc to fire.

Best solution is, trigger the SendReply just once if you want only one response.

hjh