You could use a array/table with as many elements as you need sliders, and use [int] to quantize them integers.
Most GUI elements give "integers" already, for example a default slider gives 0-127. The type is float but the output values are all without a decimal, unless you change the size or range of the slider of course, so for your purposes you could consider them integers.
D.
volker böhm wrote:
ok, pd doesn't have an integer type. what do people use, when they need to generate a sequence of integer values? i'm looking for a GUI solution with multiple sliders (e.g. like multislider in max) which are quantized to integer values. any suggestions?