Basically I have list like follows
and I need to somehow make the list look like this:
How would I do this?
Basically I have list like follows
and I need to somehow make the list look like this:
How would I do this?
How about:
set L to {"one", "two", "three", "four"}
set NL to {}
repeat with I in L
set end of NL to (contents of I) as list
end repeat
NL --> {{"one"}, {"two"}, {"three"}, {"four"}}
Works great! Thanks so much!