Quote:
Originally Posted by msimplay
hmm its not what i had expected then :S
anyone got the if condition to make it only work for standard editor then coz parsing html will only confuse users
i used
HTML Code:
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="window.open('http://www.spellcheck.net','spellchecker','statusbar=no,menubar=no, toolbar=no,scrollbars=yes,resizable=yes,width=647, height=391'); return false;"/>
</if>
instead of
HTML Code:
<if condition="DOTOOLBAR!=2">
<input type="hidden" name="toolbar" value="1" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('1');"/>
<else />
<input type="hidden" name="toolbar" value="2" />
<input type="button" class="button" name="spellcheck" value="SpellCheck" accesskey="c" tabindex="1" onclick="openspell('2');"/>
</if>
because i wanted to compensate for the lack html stripping from spellchecker
this way both parties get to use a spell checker
|
Does anyone have this working? I have yet to try it out, but by lookin at how small the word list size is I do not see how it could be to powerful.