ok, ho provato il codice e aggiustato in base al risultato ottenuto, così questo è il codice funzionante
codice:
Object.prototype.tabEnabled = false;
var o = new Object();
o.onKeyDown = function(){
	if(Key.isDown(Key.TAB)){
		mioInput.text += "\t";
		Selection.setSelection(mioInput.length, mioInput.length);
	}
}
Key.addListener(o);