Hi,
I'm trying to create new theme for TinyMCE to be used with SitePublisher. I did following
- Copy /Interwoven/TeamSite/httpd/iw/tinymce/jscripts/tiny_mce/themes/advanced to /Interwoven/TeamSite/httpd/iw/tinymce/jscripts/tiny_mce/themes/mytheme
- Edit /Interwoven/TeamSite/httpd/iw/tinymce/jscripts/tiny_mce/themes/mytheme/editor_template_src.js to create new theme and register with ThemeManager
tinymce.create('tinymce.themes.ikpTheme'
tinymce.ThemeManager.add('mytheme', tinymce.themes.mythemeTheme);
- Updated /Interwoven/TeamSite/local/config/lib/content_center/livesite_customer_src/etc/conf/livesite_customer/resources/customer-livesite-resource-config.xml to use newly created theme
[HTML]
customchars,emotions,table,advhr,advimage,advlink,iespell,media,insertdatetime,preview,searchreplace,print,contextmenu,paste,directionality,fullscreen,spellchecker,noneditable
mytheme
separator,customchars,separator,fontselect,fontsizeselect,separator,media,emotions,separator
separator,insertdate,inserttime,preview,separator,forecolor,backcolor
iespell,advhr,separator,print,separator,ltr,rtl,separator,fullscreen,spellchecker
cut,copy,paste,pastetext,pasteword,separator,search,replace,separator
tablecontrols,separator
top
left
bottom
/example_data/example_full.css
%Y-%m-%d
%H:%M:%S
false
false
example_link_list.js
example_image_list.js
example_flash_list.js
true
true
true
/
700
400
false
English=en
[/HTML]
- Run LS build
However I am not able to see the changes on TinyMCE. I also looked at the below link but no luck
http://wiki.moxiecode.com/index.php/TinyMCE:Creating_ThemeCan anyone help me on how to achieve this?
Thanks,