Attached files as requested, "browse.jpg" is the complete xml. Hope this helps. Thank you! PS: Not running the fix for the playing status bar issue yet.
printitem = function(item) local children=NULL if item.type=="node" then children=printnode(item) if (children) then for i,v in ipairs(children) do printitem(v) end end print ("</node>") else printleaf(item) end end
printitem = function(item) local children=NULL if item.type=="node" then if item.id=="3" then -- no op else children=printnode(item) if (children) then for i,v in ipairs(children) do printitem(v) end end print ("</node>") end else printleaf(item) end end