i'm sending soundfiler a message which says:
read -resize $1 $0-sample
$0-sample is a table (the $0 is required because it is an abstraction so if there is more than one instance of it, there can't be tables with the same name).
but this gives the error: 0-sample: no such table i.e. the $ is being removed.
anyone else had this problem?
Hallo, Peter Worth hat gesagt: // Peter Worth wrote:
i'm sending soundfiler a message which says:
read -resize $1 $0-sample
$0-sample is a table (the $0 is required because it is an abstraction so if there is more than one instance of it, there can't be tables with the same name).
but this gives the error: 0-sample: no such table i.e. the $ is being removed.
anyone else had this problem?
Yes, many people had this problem. The reason is, that there is no such thing as a $0-variable in messages, $0 is only defined for objects.
To write to a table named with $0, you can do this instead:
[openpanel] or whatever you use to get the filename | [pack s $0] <= objects know about $0 | [read -resize $1 $2-sample( <= messages start dollar-counting at 1 | [soundfiler]
Frank Barknecht _ ______footils.org_ __goto10.org__
lovely stuff. sorry, i should search the archives before i ask something silly.
thanks!
On 4/5/06, Frank Barknecht fbar@footils.org wrote:
Hallo, Peter Worth hat gesagt: // Peter Worth wrote:
i'm sending soundfiler a message which says:
read -resize $1 $0-sample
$0-sample is a table (the $0 is required because it is an abstraction so if there is more than one instance of it, there can't be tables with the same name).
but this gives the error: 0-sample: no such table i.e. the $ is being removed.
anyone else had this problem?
Yes, many people had this problem. The reason is, that there is no such thing as a $0-variable in messages, $0 is only defined for objects.
To write to a table named with $0, you can do this instead:
[openpanel] or whatever you use to get the filename | [pack s $0] <= objects know about $0 | [read -resize $1 $2-sample( <= messages start dollar-counting at 1 | [soundfiler]
Ciao
Frank Barknecht _ ______footils.org_ __goto10.org__
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Wow, this one comes up all the time. $0 doesn't exist in "message"-space. $n in a message means something completely different than $n as a creation argument - this is covered in the first chapter of the help docs. (Now might be a good time to review them.) The standard way to get $0 into a message is to pass it as a message argument, for instance:
[bang( | [$0] | [set $1-table(
or what have you - this will get you what you want.
HOWEVER, I would for one be an advocate of changing Pd to make $0 an exception to this rule, so that $0 means the same thing in messages and in creation arguments. Since it doesn't mean anything in message-space anyway, and is simply used to create a sort of namespace isolating a patch from its environment, it's also strictly speaking not a creation arg in the sense of $1 and so on (even though it is initialized at creation time). This would save LOTS of patching. What does everyone think? I mean, is there a really good reason to keep [$0( meaningless?
-david
On 4/5/06, Peter Worth peterworth@gmail.com wrote:
i'm sending soundfiler a message which says:
read -resize $1 $0-sample
$0-sample is a table (the $0 is required because it is an abstraction so if there is more than one instance of it, there can't be tables with the same name).
but this gives the error: 0-sample: no such table i.e. the $ is being removed.
anyone else had this problem?
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On Wed Apr 05, 2006 at 11:48:40AM -0700, david golightly wrote:
Wow, this one comes up all the time. $0 doesn't exist in "message"-space. $n in a message means something completely different than $n as a creation argument - this is covered in the first chapter of the help docs. (Now might be a good time to review them.) The standard way to get $0 into a message is to pass it as a message argument, for instance:
yup. it is a crazy dance, turning an instance argument into a message argument using the stock object classes.. coupled with the single-substitution limi of [makefilename], its amazing how bloated a patch can look just to do some basic things. i replaced all my msgboxes with [sprintf]s since they can easily access instance and message arguments, and don't require the $N to come before other text in a symbol..
how about compound messageboxes, that encapsulate other classes as inline-objects [$1 ($2 * 3) ($3 / 127)( ,and signals [~$1 - (cos ~$2)(..
as for the selector/nonlist thing, does anyone find it unintuitive having to mentally map between inlets and message elements, especially when theyre unnumbered and unlabeled? what about faking 'method' inlets in the GUI, that have actual names on them, and really just send to the first inlet and prefix with the selector (at least until fixing this in a better way), something like this: http://www.nongnu.org/om-synth/gated_sine.png
I mean, is there a really good reason to keep [$0( meaningless?
hmm. confusion?
On 4/5/06, bq ix@replic.net wrote:
On Wed Apr 05, 2006 at 11:48:40AM -0700, david golightly wrote:
Wow, this one comes up all the time. $0 doesn't exist in "message"-space. $n in a message means something completely different than $n as a creation argument - this is covered in the first chapter of the help docs. (Now might be a good time to review them.) The standard way to get $0 into a message is to pass it as a message argument, for instance:
yup. it is a crazy dance, turning an instance argument into a message argument using the stock object classes.. coupled with the single-substitution limi of [makefilename], its amazing how bloated a patch can look just to do some basic things. i replaced all my msgboxes with [sprintf]s since they can
easily access
instance and message arguments, and don't require the $N to come before other text in a symbol..
Thanks for this hint.