Anfang der weitergeleiteten E-Mail:
Von: Shintaro Miyazaki shintaro.miyazaki@stud.unibas.ch Datum: Sa, 4. Okt 2003 18:14:44 Europe/Zurich An: marius schebella marius.schebella@chello.at Betreff: Re: [PD] pd-open..
Am Samstag, 04.10.03, um 17:23 Uhr (Europe/Zurich) schrieb marius schebella:
do you mean how to make the abstraction, you are using in your patch popup? you can do this with ;pd-nameofabstraction.pd vis 1 or if it is a subpatch: ;pd-nameofsubpatch. vis 1
hey this is even better! I also loads the several instances you made on you master-patch!
But the problem is still that all open at the same position. How can I specify that?
cheers miyazaki_s
hi,
in a master patch, put any number of [nameofabstraction <x> <y>] objects, differentiated with x/y coords, and a message ';pd-nameofabstraction.pd vis 1', possibly loadbang-trigerred.
In an abstraction patch put (connections are mostly obvious, except the trigger's input, taken from the 4th outlet of the tot, instead of a loadbang):
[t b b] [int $1] [int $2] [sprintf symbol +%d+%d] 'tot wm geometry .^ $1' [tot .]
Sort of works, although there ought to be a simpler solution (cannot see one...)
Krzysztof
Shintaro Miyazaki wrote: ...
do you mean how to make the abstraction, you are using in your patch popup? you can do this with ;pd-nameofabstraction.pd vis 1
...
But the problem is still that all open at the same position. How can I specify that?
Dear Krzysztof Czaja
i dont get it...
Am Montag, 06.10.03, um 10:39 Uhr (Europe/Zurich) schrieb Krzysztof Czaja:
put any number of [nameofabstraction <x> <y>] objects, differentiated with x/y coords,
how do I do that?
for exampler there is a "master-patch" I ve got several objects. (abstactions) Like:
(sampler 1) (sampler2)
etc.
what do I have to type or create?
I tried (sampler 1 10location 10location)... but didnt work.. I also tried (sampler 1 <10> <10>) ...but also didnt succed...
sorry...
cheers miyazaki_s
[sampler 1 10 10]
using [int $2] and [int $3] in sampler.pd
or you can use $1 (an id) to somehow calculate coords from it
you need tot and sprintf too...
K
Shintaro Miyazaki wrote: ...
put any number of [nameofabstraction <x> <y>] objects, differentiated with x/y coords,
...
I tried (sampler 1 10location 10location)... but didnt work.. I also tried (sampler 1 <10> <10>) ...but also didnt succed...