so, ich hab das jetzt so geschrieben:
thisObject = this;
this.caption_mousemove = function(event) {
thisObject.move(event);
}
this.caption.addEventListener("mousemove", this.caption_mousemove, false);
wenn ich die titelleiste mouseovere, kommt die meldung, dass es thisObject
nicht gäbe.
Nick