I use tons of dot path references for xml/e4x. And much less frequently the inline filtering.
-Mark On Fri, Jul 4, 2014 at 3:21 AM, Alex Harui <aha...@adobe.com> wrote: > There are functions, but I've seen significant use of XML as an "Object". > IMO it is what makes e4x possible: the dot-path lookup as below: > > Var foo:XML = <this><is><a name="test" /></is></this> > > > Trace(foo.is); > Trace(foo..a(@name=="test")); > Trace(foo..test); > > But I could be wrong and there is some other way to handle this. > > -Alex >