20.09.2021, 11:05
Another option is to generate text labels via a script and use them as Custom values (enums):
Code:
text = {}
text[ 0 ] = 'Auto'
for i = 1, 33 do
text[ i ] = 'Low'
end
for i = 34, 67 do
text[ i ] = 'Medium'
end
for i = 68, 100 do
text[ i ] = 'High'
end
-- must be an existing object
grp.create({
address = '32/1/20',
enums = text
})