Issue: I want to add a Spell Checker to my board that can be accessed from the posting screen.Choose one of these 3 methods to deposit a link to
http://www.spellcheck.net in your posting screen:
Puts SpellCheck link
in Forum Rules title (will be visible over all posting screens.) Just add at the end of whatever you already have there:
ACP > Forum Control >Manage Forums > Forum Rules (triangle icon is the link) > Rules title (choose "show link only"):
| CODE |
| -><a href="http://www.spellcheck.net" target="_blank">Spell Check</a> |
Puts Spell Check link under the BB Help link under the smilie box
ACP > Skinning & Styles > Board Wrappers > Footers:
| CODE |
<script> var tCell = document.getElementsByTagName('TD') for (n=0;n<tCell.length;n++){ if (tCell[n].innerHTML.match(/BB Code Help/i)){ tCell[n].innerHTML+="<br /><b><a href='http://www.spellcheck.net' target='_blank'>Spell Check</a></b>" }} </script> |
Puts the SpellCheck link after Post Options under the posting screen:
ACP > Skinning & Styles > Board Wrappers > Footers:
| CODE |
<script> if (location.href.match('act=Post')) { var tdx = document.getElementsByTagName('td'); for (i = 0; i < tdx.length; i++) { if (tdx[i].className == 'pformright' && tdx[i].innerHTML.indexOf('enableemo') != -1 ) { tdx[i].innerHTML += '<br>Open <a href="http://www.spellcheck.net" target="_blank"><b>Spell Check</b></a> Window' } } } </script> |
[Edit: you may wish to try the
jacuba.com code posted later in this topic.]
Wow!! This is really useful, thanks :d
Wow this is very very cool! :yes:
This is very handy.. although i seriously doubt people should be posting in this topic :doh:
Not to worry, Shadow. We encourage the posting of any on-topic comments.
Glad y'all are finding this useful. :)
OK.....maybe there's a FOURTH version. :)
I haven't tested this, but seem to remember someone saying that it does the spell check as you type, like FireFox 2.0. Some of you may want to give this a try:
| QUOTE (Inny of IFS) |
This one is Much better!
In your Javascript Box
| CODE | | <script type="text/javascript" src="http://www.jacuba.com/service/checker/-/-/" defer="defer"></script> |
in your header & body box, replace your <body> tag with
| CODE | | <body onload="if (window.Jacuba) Jacuba.applyTo('class: textinput')"> |
|