My application needs to be able to handle characters not in the set shown in the charmap popup -- some from Eastern Europe, others in the Greek or Mathmatical character sets. I sthere an easy way to accommodate this -- along with the normal characters of course?
Thanks,
Reg
Thanks,
Reg

RE: Need More Special Characters
Thanks
Reg
RE: Need More Special Characters
https://sourceforge.net/tracker/index.p ... tid=737639
RE: Need More Special Characters
I have tried making the case the same throughout (universalkey vs. UniversalKey) but that does not seem to make any difference.
this plugin is in fckeditor\plugins\universalkey
the line in fckconfig.js is
FCKConfig.Plugins.Add( 'universalkey' ) ;
my toolbars include a reference to 'UniversalKey' (but I have also tried with 'universalkey')
Any suggestions?
Thanks,
Reg
RE: Need More Special Characters
You can try to add some alerts to check that everything is fine:
In fckconfig.js:
FCKConfig.Plugins.Add( 'universalkey' ) ;
alert("Loaded the universalkey plugin")
In universalkey\fckplugin.js:
FCKToolbarItems.RegisterItem( 'UniversalKey', oUniversalKeyItem ) ;
alert("Inside the universalkey plugin")
Both of them should show an alert, if one of them doesn't show then that's the problem: that version of the file isn't loaded: clear your cache and try again.
RE: Need More Special Characters
"FCKLang is undefined" on line 103 of fckeditorode_ie.js, which is then followed by other errors which I suspect are simply results of the first error
I notice the code to add this plugin does not specify the language in the add command; is that a problem?
Thanks,
Reg
RE: Need More Special Characters
Any help would be greatly appreciated
Thanks,
Reg
RE: Need More Special Characters
http://www.fckeditor.net
http://www.gnu.org/licenses/gpl.html
http://www.gnu.org/licenses/lgpl.html
http://www.mozilla.org/MPL/MPL-1.1.html
http://wiki.fckeditor.net/Developer%27s ... s_Settings
http://www.fckeditor.net
RE: Need More Special Characters
Reg
RE: Need More Special Characters
Thanks for the code -- I think the difference was that I had inserted the line to add this plugin two - three lines higher than you did. I was getting an error that fcklang was not found, but when I moved my line down below the reference to AutoGrow (even though that seems to be commented out) the error went away and everything works fine. I suspect that there is something in your plugin (but I really don't know) that relies on fcklang being created first and so your plugin could never be the first one to be added.
Anyway, I am in business again and I appreciate your help very much.
Reg