|
Using Evaluation
pinEditSpell files are included in pinEdit evaluation 4.01.1006+.
If you use this evaluation you only have to set the path for the dictionaries (see below) There are 2 dictionary options: The standard (optimized) pinEditSpell dictionaries The Word custom dictionaries (Text file)
Using fix
If you already have a pinEdit installation running please install the latest fix 4.01.1006+. Edit your config.js and add those lines (at the end)
//-------------------------------------------------------------------------------------------------------- // pinEditSpell //-------------------------------------------------------------------------------------------------------- // please set the license key code here var globalSpellLicenseKey = ""; // defines the spell checker page ( relative to editor folder) // for ASP.Net/ASP it should be spell.aspx // for JSP it should be spell.jsp // for PHP it depends if ASP.Net or Java is used var globalSpellPage = "spell/spell.jsp"; // defines the absolute physical path to the spell checkers dictionary file (.dict) var globalSpellDictPath = ""; // defines the absolute physical path to the spell checkers user dictionary file (Word) var globalSpellUserDictPath = "";
ASP.Net Change var globalSpellPage = "spell/spell.aspx";
Setting parameters
ASP.Net All other settings can be done with properties of server control (SpellLicenseKey,SpellDictionaryPath,SpellUserDictionaryPath)
ASP,PHP,JSP Set license key here: var globalSpellLicenseKey = "...";
Set physical path of dictionary path here: var globalSpellDictPath = "c:/mydict/english.dict";
Set physical path of a user dictionary path here: var globalSpellUserDictPath = "c:/mydict/english.dict";
If you want to pass the path parameters dynamicly then use parameter dp (dictionary path) or udp (user dictionary path) pinEdit.html?dp=c:/mydict... or
pinEdit.html?udp=c:/mydict...
|