I reckon people get put off by the long revXML function names and all
the parameters. But if you are fortunate enough to have Galaxy, it
makes things easier - you type the first few characters then use the
autocomplete function!
Before long you will find loops such as the following to be second nature:

put revXMLrootnode(tID) into tnode
put revXMLfirstchild(tID,tnode) into paramNode
repeat
   get revXMLAttribute(tID,paramNode,"name")
   if not (it contains "xmlerr") then
      put it into tname
      put tname & comma after tparamlist
   end if
    put revXMLNextSibling(tID,paramNode) into paramNode
    if paramNode is empty then exit repeat
end repeat
delete char -1 of tparamlist

regards
Martin
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to