You can buy the Mirriam Webster edition on CD...
http://www.m-w.com/service/deluxc10.htm. In the mean time, try this...

Include this javascript on your page and doubleclick any word.... this is a
dictionary script, but could easily be edited for the thesaurus. Might not
be what you are looking for, but it could be helpful in the meantime. It's a
very cool script....

<!--------SNIP--------->
<SCRIPT LANGUAGE="JavaScript">
<!--
var NS = (navigator.appName == "Netscape") ? 1 : 0;
if (NS) document.captureEvents(Event.DBLCLICK);
document.ondblclick = dict;

var newwin;
function dict() {
if (NS) {
t = document.getSelection();
opennewwin(t);
}
else {
t = document.selection.createRange();
if(document.selection.type == 'Text' && t.text != '') {
document.selection.empty();
opennewwin(t.text);
      }
   }
}
function opennewwin(text) {
if (text > '') {
newwin =
window.open('http://www.m-w.com/cgi-bin/dictionary?book=dictionary&va='+text
, 'dictionary', 'width=800, height=600, resizable=no, menubar=no,
toolbar=no, scrollbars=yes, status=yes');
setTimeout('newwin.focus()', 100);
   }
}
// -->
</script>
<!--------SNIP--------->

HTH,
Steve



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to