I didn't read your code, but, if this is what you want:
quote:
Originally posted by whiz
Let's say, for example, that I have two window IDs, "Wnd1" and "Wnd2". Instead of the registry returning "Wnd1" in "WndLstId[0]" and "Wnd2" in "WndLstId[1]", I get "Wnd1,Wnd2" in "WndLstId[0]". How can I get it so it splits items using the comma?
You can use WndLstId[0].split(','); which returns an array of split strings.