Hello,
I try to display the word 'bonjour' (xml file) and when i click to
the button "id_button" i have this error :
TypeError: Error #1009: Il est impossible d'accéder à la propriété ou
à la méthode d'une référence d'objet nul.
at affiche_bonjour/affichebonjour()
at affiche_bonjour/__id_button_click()
- Here my xml file (donnees.xml) :
<message><affiche><info>bonjour</info></affiche></message>
- Here my mxml page :
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
layout="absolute">
<mx:Script>
<![CDATA[
public function affichebonjour():void
{
userRequest.send();
affiche.text =
userRequest.lastResult.message.affiche.info;
}
]]>
</mx:Script>
<mx:HTTPService id="userRequest" url="donnees.xml"/>
<mx:Button id="id_button" x="192" y="113" label="affiche
bonjour" click="affichebonjour();"/>
<mx:TextInput id="affiche" x="167" y="174"/>
</mx:Application>
Thanks for your help.
Titipouns.