Now that I have dyn~ up and working, I have a question about its
functionality. I've included my test patch so people can see what I'm
talking about if I don't explain it clearly enough. I'm trying to set
up something that will name the dynamic objects, well... dynamically.
Works find using [newobj . a$1 testAbs] but it then when I want to
delete them, it'll delete the first one I delete, regardless of when
it was created, but won't delete any more. What's the problem?
See attached...
Pall
-- Pall Thayer palli@pallit.lhi.is http://www.this.is/pallit
Never mind.
Not that anyone's offering any suggestions.
My end solution is attached if anyone's having similar problems.
Pall On 25.9.2005, at 15:19, Pall Thayer wrote:
Now that I have dyn~ up and working, I have a question about its
functionality. I've included my test patch so people can see what
I'm talking about if I don't explain it clearly enough. I'm trying
to set up something that will name the dynamic objects, well...
dynamically. Works find using [newobj . a$1 testAbs] but it then
when I want to delete them, it'll delete the first one I delete,
regardless of when it was created, but won't delete any more.
What's the problem?See attached...
Pall
<tilter.zip>
-- Pall Thayer palli@pallit.lhi.is http://www.this.is/pallit
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
-- Pall Thayer palli@pallit.lhi.is http://www.this.is/pallit
Hi Pall, the problem is that in your patch you are using something like a$1 in a message box. This won't work... the $-args only get substituted if they are on the first position in a token, like in $1-a
all the best, Thomas
Am 25.09.2005 um 21:19 schrieb Pall Thayer:
Now that I have dyn~ up and working, I have a question about its functionality. I've included my test patch so people can see what I'm talking about if I don't explain it clearly enough. I'm trying to set up something that will name the dynamic objects, well... dynamically. Works find using [newobj . a$1 testAbs] but it then when I want to delete them, it'll delete the first one I delete, regardless of when it was created, but won't delete any more. What's the problem?
See attached...
Pall <tilter.zip>
-- Pall Thayer palli@pallit.lhi.is http://www.this.is/pallit
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hi Thomas,
Thanks for the response, even though I'd figured it out. I guess
sometimes I'm a bit quick to post. But I do have another question,
when I do something like this [dyn~ 0 1 2 0] it has three outputs,
the first two being the signal outputs. What's the third output for?
I tried attaching a [print dynout] but never got anything out.
best r. Pall On 26.9.2005, at 06:11, Thomas Grill wrote:
Hi Pall, the problem is that in your patch you are using something like a$1
in a message box. This won't work... the $-args only get
substituted if they are on the first position in a token, like in $1-aall the best, Thomas
Am 25.09.2005 um 21:19 schrieb Pall Thayer:
Now that I have dyn~ up and working, I have a question about its
functionality. I've included my test patch so people can see what
I'm talking about if I don't explain it clearly enough. I'm trying
to set up something that will name the dynamic objects, well...
dynamically. Works find using [newobj . a$1 testAbs] but it then
when I want to delete them, it'll delete the first one I delete,
regardless of when it was created, but won't delete any more.
What's the problem?See attached...
Pall <tilter.zip>
-- Pall Thayer palli@pallit.lhi.is http://www.this.is/pallit
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
-- Pall Thayer palli@pallit.lhi.is http://www.this.is/pallit
Am 26.09.2005 um 16:20 schrieb Pall Thayer:
Hi Thomas, Thanks for the response, even though I'd figured it out. I guess sometimes I'm a bit quick to post. But I do have another question, when I do something like this [dyn~ 0 1 2 0] it has three outputs, the first two being the signal outputs. What's the third output for? I tried attaching a [print dynout] but never got anything out.
It's the attribute (or dump) outlet that is common to many flext-based externals. You can use it to query the state of an object... send [getattributes( to get a list of attributes (output through the dump outlet). You may set an attribute "myattr" with [myattr value( into the leftmost inlet and query the value with [getmyattr(. At object creation you can set its value with [object arg1 arg2 arg3 @myattr value] This syntax is derived from Max/Jitter where it is extensively used.
best greetings, Thomas