I am on the way to Cleveland for
Flex Camp tomorrow (posting this on my cell phone from a rest stop on the Ohio Turnpike). I had originally planned to present an opening session and take part in a closing Q&A panel, but I'll have to miss the Q&A as I have to be in San Francisco next. I understand that attendance for Flex Camp Cleveland is up around 150, which is great, and I am looking forward to meeting everyone in the morning.
creating passionate users... but who's going to do all that extra work? Who's going to make the extra tutorials and
better docs?" Answer: your user community. Think about all the things a strong user community can do for you: tech
support, user training, marketing (evangelism, word of mouth), third-party add-ons, even new product ideas. And
that's not including any extra sales you might make on community/tribe items like t-shirts, stickers, and other
gear.
Great to see you are doing very well in the Flex tour. It's Rodrigo Paolucci, CMO from Samba Tech LatAm, I met you at Flex meeting in Sao Paulo.
Just discovered your blog, I'll keep following it.
All my best
E4X treats them as subtraction operators.
So what's the work around?
[data]
[first-child]
[second-child]Hello world![/second-child][/first-child]
[/data]
(I've substituted square brackets for less-than and greater-than.)
This doesn't work...
{xmlService.lastResult.data.first-child.second-child}
This was suggested by the Adobe Flex team [http://www.nabble.com/e4x-Dash-td16386671.html]...
{xmlService.lastResult.data.descendants("first-child")}
which may work for one child but not more...
{xmlService.lastResult.data.descendants("first-child").descendants("second-child")}
I also tried this...
{xmlService.lastResult.data.eval("first-child").eval("second-child")}
Any suggestions?
Also, what about name spaces?
{xmlService.lastResult.data.content:encoded]