Space.Select() – select multiple nodes from text string separated by semi colons, node paths in the list must not have leading spaces
Node.Selection() – returns a selection list with a semicolon delimination, but has leading spaces in each nodes path so needs to be adjusted to work with Space.Select
sel = Node.Selection(); selArray = sel.split(";"); re = /^\s/; // whitespace in first character position sel = selArray[0].replace(re,""); if(selArray.length > 1) for(i=1;i<selArray.length;i++) sel = sel + ";" + selArray[i].replace(re,"");
Node.Select – select one node
Space.Unselect()