<br>I noticed that open layers swallows events such as mousemove so that I can't implement a global mousemove handler effectively.&nbsp; After a but of hunting I tracked it down to line 145 in Map.js.&nbsp; Changing the fallthrough param to true seems to do the trick.
<br><br>this.events = new OpenLayers.Events(this, div, this.EVENT_TYPES, true);<br><br>Is there any reason why this shouldn't be the default?<br><br>