Re: dynamic variable referencing

2005-12-07 Thread Michael Williams
Bruno,Thanks, but the whole reason I need it is to create objects in the tree on the fly.  Every implementation I've seen of Element tree manually assigns values to the nodes and manually places them.  All I care about is that any tags they have are in my list of "valid_tags".  Otherwise they can b

Re: dynamic variable referencing

2005-12-07 Thread bruno at modulix
Michael Williams wrote: > I would RTM, but I'm not sure exactly what to look for. Basically, I > need to be able to call a variable dynamically. Meaning something like > the following: > > - I don't want to say OBJECT.VAR but rather > OBJECT. ("string") and have

Re: dynamic variable referencing

2005-12-06 Thread Heiko Wundram
Michael Williams wrote: > - I don't want to say OBJECT.VAR but rather OBJECT. > ("string") and have it retrieve the variable (not the value of > it) if in fact it exists. . . > > > It's not exactly clear what you're trying to tell us here. Basically, what I guess you want is:

dynamic variable referencing

2005-12-06 Thread Michael Williams
I would RTM, but I'm not sure exactly what to look for. Basically, I need to be able to call a variable dynamically. Meaning something like the following: - I don't want to say OBJECT.VAR but rather OBJECT. ("string") and have it retrieve the var