Hi,
You can catch the key event this way:
var editor1=document.getElementById("<%=Editor1.ClientID%>");
if(editor1.IsReady)CuteEditor_OnInitialized(editor);
function CuteEditor_OnInitialized(editor)
{
editor1.HookEvent(editor1.GetDocument(),"keydown",function(e)
{
var e=e||editor1.GetWindow().event;
//alert(e.keyCode);
});
}
Regards,
Terry