Hi, I'm developing an iOS app using libpd, so I should only use vanilla objects due to a license issue.
So I tried to imitate zexy's [list2symbol] with vanilla objects today, and I could similarly get it working.
My abstraction takes a list and replaces space between items in a list with 'hyphen(-)' to change the list to a symbol.
e.g) a list "a b c 1 2 3" changes to a symbol "a-b-c-1-2-3"
a list should consist of maximum 6 items(5 spaces), and the rest will be ignored.
And if it takes a single float from it's inlet, the result remains the same.
e.g) a single float "123" will remain a float "123"
I hope someone will find this useful.
Zack