Is there any way of deactivating the "advanced" tab on the link dialog?
I have tried to comment the code which adds the tab to the dialog but I only got some cascade errors.
Any suggestion?
I have tried to comment the code which adds the tab to the dialog but I only got some cascade errors.
Any suggestion?

RE: Deactivate "Advanced" tab on the link dia
RE: Deactivate "Advanced" tab on the link dia
As you did, comment out the line in fck_link.js that adds the 'Advanced' Tab.
Then in fckdialog.html, put a line at the end of AddTab:
oTabs[ tabCode ].style.display = '';
Then, in SetTabVisibility, remove the line that:
oTab.style.display = isVisible ? '' : 'none';
This may have been a happy coincidence for me, but it worked.
RE: Deactivate "Advanced" tab on the link dia
WinXP, FF 1.0.3 and IE 6
RE: Deactivate "Advanced" tab on the link dialog
the easiest way is to set the following values to true or false, depending on whitch tab you want to show/hide.
FCKConfig.LinkDlgHideTarget =true;
FCKConfig.LinkUpload=false;
FCKConfig.LinkDlgHideAdvanced=true;
this could be done either in the general config file or better in your specific config file defined there :
oFCKeditor.Config["CustomConfigurationsPath"]= "/fck_detail.js";