Word content is only cleaned when you press the paste button in ActivEdit. Ctrl+V allows you to paste without cleaning, but if you would like to always have content parsed, use the API as follows:
<script language="JavaScript">
function aeapi_local_onLoad(aeObject, fieldname) {
aeObject.DOM.onkeyup = function aeObject.ae_onkeyup() {
DHTMLSafe=aeObject;
if(DHTMLSafe.DOM.parentWindow.event.keyCode == 86 && DHTMLSafe.DOM.parentWindow.event.ctrlKey) {
ae_cleanWord(DHTMLSafe);
}
}
}
</script>