Re: [Flashcoders] recursive function that returns an array

2005-11-18 Thread Martin Wood
you dont 'delay' the return function, just consider that each invocation of the function can pass back a result to the calling function the idea is something like this (its not tested code, but hopefully will give you a starting point...) also, it assumes that each node has only one child, ot

[Flashcoders] recursive function that returns an array

2005-11-17 Thread Robin Burrer
Hi everybody, I try to build a recursive function that searches an xml node for a particular attribute name. Each Node of my xml document has an attribute called "transition". So basically what I want to do is pass an xml node to my function and the name of the transition and in return I want to