For the ones that really needs this, here's how you can do this in a brute-force way without modifying alfresco.war directly:1. Copy into source/web/jsp/content/create-content-wizard/create-html.jsp and source/web/jsp/dialog/edit-html-inline.jsp of your AMP the two files create-html.jsp and edit-html-inline.jsp, respectively. (These are the files mentioned in the original post.) Customize them according to your needs; you'll find tinyMCE.init in there.2. Make sure your AMP build.xml contains in the target "package-amp" a zip-fileset <fileset dir="${project.dir}/source" includes="web/jsp/**" />
.(Notice that is approach is very bad: if in a future release/update the two mentioned files change, you have to adapt your copies!)Kaspar