i made a little abstraction/script (?) with ofelia for sorting lists with symbols/strings alphabetically (i thought about a vanilla solution, but this seems much easier ): symbolsort.pd
function ofelia.sort(stringList);
table.sort(stringList, function(a, b) return a:upper() < b:upper() end);
return stringList;
end;
;
function ofelia.tros(stringList);
table.sort(stringList, function(b, a) return a:upper() < b:upper() end);
return stringList;
end;
;