Anyone have a resource where I could get some tips on how to add buttons and change behaviors in FCKeditor? I'm looking to replace the existing image functionality with a custom image library that my company uses. I can't seem to find a place to start.
Wed, 01/26/2005 - 17:21
#1
RE: API or documentation?
FCKConfig.ImageBrowserURL = FCKConfig.BasePath + "filemanager/browser/extended/browser.php?
You can customize that image browser as needed and set it up so that when you select an image the your page passes the url of the selected image to the SetUrl function of the calling page:
In frmResourceslist.htm
See function OpenFile:
window.top.opener.SetUrl( fileUrl ) ;
window.top.close() ;
window.top.opener.focus() ;
RE: API or documentation?