
03-01-2002, 02:28 AM
|
|
|
Join Date: Feb 2002
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally posted by exodus
I was searching for a replacement spell checker for use on my forums since spellchecker.net charges $150 for 10,000 uses. I found something called XDE Spellcheck, it's a nifty little applet.
Installation is quite simple..
First, you will need to modify the directories of where the applet code is on your server (the bold section in the code). Then add the code below to your style footer:
Code:
<!-- spell checking -->
<applet codebase="/spellchecker"
code="net.xde.SpellChecker.SpellCheck.class"
archive="xdespellchecker.jar, usenglish.jar"
height="1"
name="spellcheck"
width="1"
alt="Applet Not Supported"
>
<param name="name" value="spellcheck">
<param name="scriptable" value="true">
<param name="mayscript" value="true">
</applet>
<script language="JavaScript" src="/spellchecker/spellcheckcode.js"></script>
<!-- /spell checking -->
Second, add the following input button wherever you want to spell check a textbox called "message" within the "vbforum"
Then add the following wherever you want to spell check a textbox called "message" within form "vbform".
Code:
<input type="button" class="bginput" name="spell" value="Spell Check" accesskey="c" tabindex="5" onClick="SpellCheckFieldsLocal();">
In order for the spell checker to work you will need to download the vbSpell.zip and install it into a directory called spellchecker in your forum home.
|
Where is step 2!?
|