1. I have a problem with adding new FCKConfig.ToolbarSets
I have written in fckconfig.js:
and start with:
$oFCKeditor->ToolbarSet = "Laura";
When I start FCKE, I have an error: "Laura" toolbar does not exist...
But when i write:
$oFCKeditor->ToolbarSet = "Default";
or
$oFCKeditor->ToolbarSet = "Basic";
it works good!
2.
Is it any function/plugin in FCKE to upload image and automatly make a thumbnail with link to full size image?
Thanks!
I have written in fckconfig.js:
FCKConfig.ToolbarSets["Laura"] = [
['Source','DocProps','-','Save','NewPage','Preview','-','Templates'],
['Cut','Copy','Paste','PasteText','PasteWord'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
'/',
['Bold','Italic','Underline','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote','CreateDiv'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['Link','Unlink'],
['Image','Flash','Table','SpecialChar','PageBreak'],
'/',
['TextColor'],
['FitWindow','ShowBlocks'] // No comma for the last row.
] ;
and start with:
$oFCKeditor->ToolbarSet = "Laura";
When I start FCKE, I have an error: "Laura" toolbar does not exist...
But when i write:
$oFCKeditor->ToolbarSet = "Default";
or
$oFCKeditor->ToolbarSet = "Basic";
it works good!
2.
Is it any function/plugin in FCKE to upload image and automatly make a thumbnail with link to full size image?
Thanks!
Re: Questions for my first FCKE use
Your toolbarset looks ok, make sure you clear your browser cache when you make any changes to fckconfig.js
2. Try CKFinder, you could upload two seperate images and link one to the other, or failing that build a custom plugin.
Re: Questions for my first FCKE use
Thank you!
Re: Questions for my first FCKE use
Re: Questions for my first FCKE use
lol. indeed i had put a '/' where it shouldn't be.
Pretty stupid of mine actually, but thanks a lot for your reply!