How to trigger all the loadbangs in a patch

gpvillamil's icon

I have a patch that relies on a bunch of loadbangs to set initial values. (It works well.)

However, there are some circumstances in which I'd like for the loadbangs to all fire again, in order to reset the patch.

I've tried sending a "bang" to "thispatcher" but doesn't quite seem to work. How can I do this?

Jean-Francois Charles's icon

[universal] should work. Order of who receives first not guarantied, of course.
J-F.

bkshepard's icon

Doesn't sending a loadbang message (not a loadbang object) to [thispatcher] trigger all the loadbangs inside the patcher?

gusanomaxlist's icon

as bkshepard said, sending a "loadbang" message to [thispatcher] will trigger all [loadbang] objects in the patcher (and subpatchers).

About the order of received bangs, I find it a very good habit to have only one main loadbang per patch and use a bunch of [send] so I decide of the order of execution myself .

Cheers,
_y

Luke Hall's icon

Check out this java class if you want reliable ordered loadbangs. It's very nifty.

lh