show/hide this revision's text 2 added code

Assuming you mean it's valid in SendIdleSignal and it's not valid in SendActiveSignal...

Your event listeners should also use bind, like this:

Event.observe(document, "mousemove", this.sendActiveSignal.bind(this));
Event.observe(document, "keypress", this.sendActiveSignal.bind(this));

Also, if you're using prototype 1.6 or higher, you can use

document.observe("mousemove", this.sendActiveSignal.bind(this));
document.observe("keypress", this.sendActiveSignal.bind(this));

Additionally, if you want a generic (framework agnostic) way to do this, you could define your functions like this:

sendActiveSignal: function() {
    var that = this;
    return function() {
        that.handlers.each(function(r) {
            r.setActive();
        });
    }
}

then your event handlers/setInterval could be left as

Event.observe(document, "keypress", this.sendActiveSignal);
show/hide this revision's text 1

Assuming you mean it's valid in SendIdleSignal and it's not valid in SendActiveSignal...

Your event listeners should also use bind, like this:

Event.observe(document, "mousemove", this.sendActiveSignal.bind(this));
Event.observe(document, "keypress", this.sendActiveSignal.bind(this));

Also, if you're using prototype 1.6 or higher, you can use

document.observe("mousemove", this.sendActiveSignal.bind(this));
document.observe("keypress", this.sendActiveSignal.bind(this));

Additionally, if you want a generic (framework agnostic) way to do this, you could define your functions like this:

sendActiveSignal: function() {
    var that = this;
    return function() {
        that.handlers.each(function(r) {
            r.setActive();
        });
    }
}