it returns the below XML - what want to do is extract the value of both position and duration and by subtracting one from the other i can get a countdown but how do i get at thoses values in VVVV? i have been playing with http get and xpath but i can only get it to return the clip name eg List - clive in cayman isles.avi
i left the other ways i probed into these nodes in the patch, so maybe it helps shed some light on the differences in their purpose.
while the _xpath_kind are made to quickly query into the context, the ones with _byname_simply do that: return the child elements with that name. using them you will need to traverse deeper into the context element by element.
i assume you could always make yourself a nice xpath search query, no matter the problem you throw at it
just be careful, the node automatically prepends a self:: to the query and consequently blocks a few valid queries that work with the other xpath nodes. it makes usage a little bit inconsistent, adding a * in front of the query seems to help to restore the context.