I'm having some problems getting a flash application (in AS3) to search for a specific element value inside a xml. I have the following xml file.

 <clientlist>
  <pessoa>
    <id>0140</id>
    <nome>Maria Manuela</nome>
    <email>mariamanuela@gmail.com</email>
    <contacto>969876543</contacto>
  </pessoa>
  <pessoa>
    <id>0141</id>
    <nome>Maria Jose</nome>
    <email/>
    <contacto>961234567</contacto>
  </pessoa>
  <pessoa>
<clientlist>

I have a "search" field where, supposedly, I would type a name and would get an array of "pessoa"s, but I am having some problems making the loop happen.

So, imagine I would search for "Maria", I wanted to get a:

trace(PessoaArray[0]) =

<id>0140</id>
<nome>Maria Manuela</nome>
<email>mariamanuela@gmail.com</email>
<contacto>967060255</contacto>

trace(PessoaArray[1]) =

<id>0141</id>
<nome>Maria Jose</nome>
<email/>
<contacto>968496127</contacto>

Can anyone help me out? I'm not new to flash AS3 (even though i'm not exactly a pro), but its my first time messing with XML files.

Thank you.

Marco Roberto.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

the short answer: xmlData.*.(nome == $name))

the long answer...

tested this in a FLA with a textfield_tf and button_btn

import flash.events.MouseEvent;

var $data:XML = <clientlist>
  <pessoa>
    <id>0140</id>
    <nome>Maria Manuela</nome>
    <email>mariamanuela@gmail.com</email>
    <contacto>969876543</contacto>
  </pessoa>
  <pessoa>
    <id>0141</id>
    <nome>Maria Jose</nome>
    <email/>
    <contacto>961234567</contacto>
  </pessoa>
</clientlist>;

_btn.addEventListener(MouseEvent.CLICK,onClick);

function onClick($e:MouseEvent):void{
    trace($data.*.(nome == _tf.text))

}
link|improve this answer
I know some people like to use a dollar sign as a prefix for function parameters in as3 applications, but $data? – Taurayi Sep 11 '11 at 22:59
yah, $data is bit much. I've been using the $ before the var name within functions, makes it easy(for me) to figure out the the scope of the variable. but this was a quick example I threw together, so I didn't pay much attention to it. Maybe with enough downvotes I'll fix it. – Daniel Sep 12 '11 at 1:09
$prefix is forgivable, _prefix is ugly but common, but all is well as long as people avoid using the horrendous, burn-my-eyes-out double underscore: __killMe. omg. that's the WORST. – TheDarkIn1978 Sep 12 '11 at 3:15
Thank you very much. :) – Marco Fox Sep 12 '11 at 3:24
@TheDarkIn1978 I actually use _prefix but I can admit it doesn't look pleasant, at the very least we can all agree that __prefix is an abomination to mankind that should be killed with fire. – Taurayi Sep 12 '11 at 11:56
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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