I'd like to add a button to the toolbar that calls a JavaScript function like Tada()?
Any ideas on how to add this?
|
I'd like to add a button to the toolbar that calls a JavaScript function like Tada()? Any ideas on how to add this?
| |||
|
feedback
|
|
I am in the process of developing a number of custom Plugins for CKEditor and here's my survival pack of bookmarks:
For your purpose, I would recommend look at one of the plugins in the | ||||
|
feedback
|
|
See this URL for a easy example http://ajithmanmadhan.wordpress.com/2009/12/16/customizing-ckeditor-and-adding-a-new-toolbar-button/ There are a couple of steps: 1) create a plugin folder 2) register your plugin (the URL above says to edit the ckeditor.js file DO NOT do this, as it will break next time a new version is relased. Instead edit the config.js and add a line like so
3) make a JS file called plugin.js inside your plugin folder Here is my code
| ||||
|
feedback
|
|
You'll need to create a plug-in. The documentation for CKEditor is very poor for this, especially since I believe it has changed significantly since FCKEditor. I would suggest copying an existing plug-in and studying it. A quick google for "CKEditor plugin" also found this blog post. | |||
|
feedback
|
|
In case anybody is interested, I wrote a solution for this using Prototype. In order to get the button to appear correctly, I had to specify Here is the plugin.js:
| ||||
|
feedback
|
|
You can add the button image as follows:
Here is the actual plugin with all steps described. | |||
|
feedback
|