[multislider] single slider value
Hi,
[multislider] - how to get the single slider value, only by moving the slider (without "fetch" command)?
Thanx,
E.
Send the left outlet to an unpack object with the proper number and type of arguments:
ok, ..but my task is more complicated) Multislider has variable size and its maximum size is 128..
At 11:54 AM -0600 4/17/07, Enegwai wrote:
>[multislider] - how to get the single slider value, only by moving the slider (without "fetch" command)?
The way I've done this relies on Peter Elsea's Lobjects, which can be found here: http://arts.ucsc.edu/ems/music/research/lobjects.readme.html
It takes the slider list as input, and outputs the most recently changed slider's value and index.
-C
--
Chris Muir | "There are many futures and only one status quo.
cbm@well.com | This is why conservatives mostly agree,
http://www.xfade.com | and radicals always argue." - Brian Eno
other solution, maybe from ej...
On 18 avr. 07, at 00:44, elt wrote:
> other solution, maybe from ej...
looks like ej ;-)
I just modified 2 small things. [listfunnel] will work with list of
up to 2048 items, but [vexpr] won't, nor [zl nth]. You can easily
replace [zl nth] by [mxj list.Nth], and for [vexpr], if you want an
ej solution, you can use [mxj ej.lop].
Cheers,
ej
Enegwai schrieb:
> ok, ..but my task is more complicated) Multislider has variable size
> and its maximum size is 128..
Yet another solution only using standard objects (of course) which
should be fine up to 4096 elements. Its like listfunnel, but outputs
only the changing values...
Stefan
--
Stefan Tiedje------------x-------
--_____-----------|--------------
--(_|_ ----|-----|-----()-------
-- _|_)----|-----()--------------
----------()--------www.ccmix.com
Stefan Tiedje schrieb:
> Yet another solution
And I found this one in my bag, which doesn't need java. Strangely
enough it seems to be a bit slower than the java solution I posted
before... (I would have expected the opposite)
But this one shows clearly, that the limit of listfunnel is not 2048, as
had been stated before. The limit of multislider seems to be 4095, but
my patch is happily working till that number...
Have fun... (I had... ;-)
Stefan
--
Stefan Tiedje------------x-------
--_____-----------|--------------
--(_|_ ----|-----|-----()-------
-- _|_)----|-----()--------------
----------()--------www.ccmix.com
thanks guys, it's very useful