So I figured out what I was doing wrong.

Apparently I was trying to hook into some events that did exist.

this.addEvent("send", this.cmdSend);
this.addEvent("data", this.rawData);

should have been

this.addEvent("onCmd", this.cmdSend);
this.addEvent("onRaw", this.rawData);
or in my case
this.onCmd("send", this.cmdSend);
this.addRaw("data", this.rawData);

-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to