Hi,
I want to store a value and use it as a constant - I mean, the value
is permanently "broadcasting" without the need of a bang (which
'float' needs). Is there a way?
Thanks for a hint Jurgen
Or RIGHT inlet of [float] ;) You can also use [value] ++
Jack
Le 21 nov. 08 à 04:27, hard off a écrit :
send the value to the LEFT inlet of the float object? _______________________________________________ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
[value]
.hc
On Nov 20, 2008, at 2:47 PM, Lao Yu wrote:
Hi,
I want to store a value and use it as a constant - I mean, the
value is permanently "broadcasting" without the need of a bang
(which 'float' needs). Is there a way?Thanks for a hint Jurgen _______________________________________________ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/ listinfo/pd-list
Looking at things from a more basic level, you can come up with a
more direct solution... It may sound small in theory, but it in
practice, it can change entire economies. - Amy Smith
Not really sure I am understanding what the original goal was here, but how does using [value] eliminate the need for a [bang]? You still need to bang on the [value] object to get the 'constant' out of it?
Jurgen, could you describe the situation you are trying to solve?
Mike
On Thu, Nov 20, 2008 at 9:55 PM, Hans-Christoph Steiner hans@eds.org wrote:
[value] .hc On Nov 20, 2008, at 2:47 PM, Lao Yu wrote:
Hi, I want to store a value and use it as a constant - I mean, the value is permanently "broadcasting" without the need of a bang (which 'float' needs). Is there a way? Thanks for a hint Jurgen _______________________________________________ Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Looking at things from a more basic level, you can come up with a more direct solution... It may sound small in theory, but it in practice, it can change entire economies. - Amy Smith
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Hallo, Lao Yu hat gesagt: // Lao Yu wrote:
I want to store a value and use it as a constant - I mean, the value
is permanently "broadcasting" without the need of a bang (which
'float' needs). Is there a way?
Only audio signals in Pd are updated automatically, but message flow always is driven by some event generator, like a metro or a gemhead. You generally initiate a message flow with a bang-event, but there is no way to "broadcast without the need of a bang" outside of audio.
For storage itself you have lots of options, though: [float], [value], [table], [list], [textfile], [pointer], and so on.
Frank