can anyone please let me know if they have added an additional button on the toolbar if so please share me the initial procedure.
<textarea external-editor="tinymce" external-editor-config="sdc_config" rows="25" cols="125"/>
IWTinyMCECustomConfig("sdc_config", "toolbarRow", "link,unlink,anchor,code");
IWTinyMCECustomConfig("[config_name]", "toolbarRow", "[row1 buttons]");IWTinyMCECustomConfig("[config_name]", "toolbarRow", "[row2 buttons]");IWTinyMCECustomConfig("[config_name]", "toolbarRow", "[row3 buttons]");
IWTinyMCECustomConfig("[config_name]","plugins","flash");
IWTinyMCECustomConfig("[config_name]", "toolbarRow", "link,unlink,anchor,code,flash");
...editor_plugn_src.js......passing "help_variables" and not "_help_variables"...
I realize that this thread is over a year old but I have a ticket opened with support on issues with enabling a custom TinyMCE plugin and they said that custom plugins are not yet supported. I'm running TS 672 SP2.Maybe TS 8
How familiar are you with TinyMCE code?If you can get your custom plugin to work outside TS, it is easy to integrate it with TS.
I have been able to use certain but not all plugins.I could not use : Template, image, file I did you table extras to give additional functionality to create table. I can share my code if anyone is interested.
You will get better support on building new plugins at the tinymce support site. I have only used plugins from there. Not created my own.
Are you saying that the directions from the 7.1 Forms Developer Guide under the heading: Creating Custom Plug-ins will not work?
I'm trying to get a custom plugin to load under TinyMCE using those exact steps. I have no problems using the custom plugin in a standalone TinyMCE instance, it is only when attempting to configure it through TeamSite that it fails to load.
Hi Guys,Creating custom plugins work in TS 7.3.2 as mentioned in Formspub/sitedev guide. Initially it did not appear for us. Eventually 2 point solved the problem :1. Browser Cache Clear2. Reusing an icon provided in icon.gif by adding one line in UI.css for our plugin.Now am looking out for 2 activities. Please help with your suggestions:1. How to customize formatselect to add mor attribute in the dropdown (example cite, abbr, small, dfn, ins etc.)2. To add one icon image to be recognized for new plugin added, whats the best approcah - (a.) Modify existing sprite icon.gif (b.) Add one single image in teamsite.Thanks,Retesh
Am now able to populate formatselect dropown with custom tags (INS, DFN etc) With the help of this post - http://devnet.interwoven.com/forums_vb/showthread.php?t=30788&forumid=66&highlight=tinymce+formatselectNow, my problem is on selecting INS in the drop down my selected text is not being wrapped in start and close tags.I have tried modifying isBlock() and Format Block function in tinymce_src.js but even that doesnt worked. Any pointer guys, how should I wrap the selected text in editor by the chose tag in Format Dropdown.This is required in DCT and not Sitepublisher.