--- In [email protected], "trefalgar" <trefal...@...> wrote:
> It works just fine. On the panel I get a list of {text}:, followed by the
> actual textinput field. The only problem is I can't figure out how to
> reference those textinputs now that they're created! I've searched through a
> debug session and can't find the children anywhere, I've also tried using
> getChildNameByText, and it always returns null.
Sorry if this is a double post, but it seems that when you ask the question,
you sometimes find the answer yourself.
I was able to get to them via ...
for each (var item:Object in searchcanvas.getChildren() ) {
trace(item.id);
}
I'd rather be able to call them directly via {name}.id, but this works.
Tref