...that deal with pure data
You are not logged in.
I'm having trouble normalizing tables that are located within my subpatches.
|; /
|$0-table normalize |
| \
doesn't work because message boxes read dollarsign variables differently...
[normalize(
|
[s $0-table]
doesn't seem to work either, though I get no error message in the pd window.
any help at all would be amazing. thanks.
Offline
Don't forget to give the parameters for the normalize message:
[normalize -1 1(
|
[s $0-table]
Offline
edit: nevermind. That must have been the issue, it's working fine now. Thank you so much.
Last edited by menselijke (2010-03-02 10:29:01)
Offline
If you need to use a patch variable in a message you should do this way
[f $0]
|
|; /
|$1-table normalize -1 1 |
| \
But using an [s] object is more elegant in most situations.
Offline