How does one access the child elements of a component instance from within the component definition?
For example, if I have a component file MyComp.mxml and an application file with the following: ... xmlns:comp="components.*" ... <comp:MyComp> <![CDATA[some cdata text]]> </comp:MyComp> ... How can I access the CDATA XML node from within the MyComp.mxml implementation?
