up vote 0 down vote favorite
share [g+] share [fb]

Is there a way to access the DOM-Elements of a mxml file in a way that you can in JS (e.g. using Prototype or jQuery)?

I need to know if a top-level element has a child (sub-sub-...-childs) with a certain id.

In JS (using prototype) it would be something like:

$('tabs').select('[id="something"]');

Any ideas?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Depending on what you're trying to do, Bifff might be the answer. Think of it as "JQuery for Flex": http://wiki.github.com/seanhess/bifff

link|improve this answer
feedback

You can recursively search through the structure. Something like this (Might not be the most efficient in your case):

private function hasChild(node:UIComponent, target:String):Boolean
{
    if(node.id == target) 
    {
        return true;
    }
    else
    {
        var hasTarget:Boolean = false;
        for(var i:int = 0; i < node.numChildren; i++)
        {
            hasTarget = hasTarget || hasChild(node.getChildAt(i));
        }
       return hasTarget;
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.