Sorry for the double post.
Here is code sample that makes partially what i want:
var control = new OpenLayers.Control();
OpenLayers.Util.extend(co ntrol, {
draw: function () {
this.box = new OpenLayers.Handler.Box(control,
{"done": this.notice},
{keyMask: null});
this.box.activate();
},
notice: function (bounds) {
...



