PDA

View Full Version : addEventListener Error


varsis
03-02-2008, 11:07 PM
1061: Call to a possibly undefined method addEventListener through a reference with static type flash.xml:XMLDocument.

There it is. Doesn't seem to work. I converted:
This: this._response.onLoad = function (success) {

TO:
this._response.addEventListener(Event.COMPLETE, success);
function success(event:Event):void{

Maybe I did something wrong? duhnno.

h00d
03-02-2008, 11:09 PM
That is because XMLDocument is not an IEventDispatcher.

Inheritance:
XMLDocument > XMLNode > Object

What Event are you trying to listen for?

varsis
03-02-2008, 11:28 PM
That is because XMLDocument is not an IEventDispatcher.

Inheritance:
XMLDocument > XMLNode > Object

What Event are you trying to listen for?

I am trying to know when it is loaded the old function was _response.onLoad

Check the previous post. I am trying to convert.
http://varsisstudio.com/FLICKR IMAGE 3.zip

Thats the full project above,

Chris