I am trying to do the same thing, using version 2.0. The Toolbar Customization Doc refers to older versions, such as 1.6. Since this is the "version 2.0" forum, I would appreciate it if someone could respond to the toolbar question with an answer relevant to version 2.0.
ok.. seems that adding a plugin iwth this version is much easier... !! oh yea!
I have added the ability to add a push button (button) to open a window like the achor tag. and then query a db for a list of values (formated), select it, and instert into fck editor window. instructions follows:
______________ Create a folder in this case (Classify) under the plugins dir.
___________________ Create a page .. in this case fck_Classify.php: code:
<?
include ("../../../../../functions/db.php");
include("../../../../../functions/variables.php");
//include("../functions/stripslashes.php");
include("../../../../../functions/functions.php");
$classification_result2 = mssql_query("SELECT * FROM classification order by name");
?>
RE: Customize toolbars
Is it possible to remove some buttons?
please help me..
RE: Customize toolbars
can you tell me if is possible/legal to do something similar to modify a toolbar?
RE: Customize toolbars
RE: Customize toolbars
Thanks.
RE: Customize toolbars
fckconfig.js is a file in the main directory, and it has all of the things described in the documentation mentioned by jdorner.
Yay!
RE: Customize toolbars - close to getting it!
ok.. seems that adding a plugin iwth this version is much easier... !! oh yea!
I have added the ability to add a push button (button) to open a window like the achor tag. and then query a db for a list of values (formated), select it, and instert into fck editor window. instructions follows:
______________
Create a folder in this case (Classify) under the plugins dir.
___________________
Create a page .. in this case fck_Classify.php:
code: