Hello,
if I execute the following hta-file it appear the message "undefined" in the textfield of the ckeditor and I can't write in the textfield. If I execute the same file but with the extension "html" the editor works pretty good.
Have you any ideas what is wrong/how can I fix the problem, so that I can use the editor in an hta?
thanks
hollex
Editor.hta
---------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!--Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.For licensing, see LICENSE.html or http://ckeditor.com/license--> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CKEditor</title> <meta content="text/html; charset=utf-8" http-equiv="content-type"/> <script type="text/javascript" src="../editor/ckeditor.js"></script> </head> <body> <textarea id="EditorArea" name="EditorArea"></textarea> <script type="text/javascript">var oEditor =CKEDITOR.replace( 'EditorArea' );</script> </body> </html>