Is it possible to modify the actual layout, images etc for the toolbar? I could see how you could use different images, but if I want to use a totally different layout for the toolbar to what is offered, can this be done? I've looked through the skins, and that just seems like it's different colors etc but in the same layout, thanks.
Sun, 02/26/2006 - 19:28
#1

RE: Design of toolbar
RE: Design of toolbar
I guess what I'm essentially after is the commands issued by each button on the toolbar. What I want in it's simplest form is the following:
<a href="" onclick="stylebold()"><img src="bold.gif" alt="Bold Text"></a>
Now obviously the above is only an example, but I'm really after what command would go where the "stylebold()" is above, if this is indeed how things work in FCKeditor. I've looked through the various js in the project and just can't seem to crack how to get the commands issued by clicking on a button in the toolbar. Thanks for the help.
RE: Design of toolbar
RE: Design of toolbar
onclick="FCK.Commands.GetCommand( 'Bold' ).Execute();"
to do the action, but of course that's not how the toolbar is coded, just an example to call a command
RE: Design of toolbar
RE: Design of toolbar
RE: Design of toolbar