Entering   instead of space

pinEdit

Entering   instead of space


Pintexx Support 09-26-2005, 4:46

If you need to enter   instead of standard space please edit config/config_event.js and add this code

function eventOnKeyDown(e)
{

 // to cancel KeyDown return true
 //return true;
  var evt = getWindow().event;

 if (evt.keyCode == 32) {
  var sel = getDoc().selection;
  if (sel.type == "Control")
   return true;
  var r = sel.createRange();
  r.pasteHTML(" ");
  evt.cancelBubble = true;
  evt.returnValue = false;

  r.select();
  r.moveEnd("character", 1);
  r.moveStart("character", 1);
  r.collapse(false);

  return true;
  }
}