[资源]推荐一款 拼写检查功能的插件 SpellCheckXtra

      资源下载 2007-6-20 15:17:00

    今天推荐一款 拼写检查功能的插件 SpellCheckXtra,功能还不错。并且是免费和shockwave安全的插件。

直接复制Spell Check Xtra.x32到director安装目录对应位置下即可。

该插件包括4个函数:

checkWord (Object me, String word)

描述: 返回指定单词word是否拼写正确。

使用: 
 object = new(xtra "SpellCheckXtra")
 put object.checkWord("test")

 

getSuggestions (Object me, String word)

描述: 返回最接近要匹配单词的字符串列表。

使用: 
 object = new(xtra "SpellCheckXtra")
 if object.checkWord("testz") then
  alert object.getSuggestions("testz")
 end if

 

findAndReplace (Object me, String word, String lookFor, String replaceWith)

描述: 将文字里面的第一个找到的指定字符串替换成另外一个字符串。


使用:  
 object = new(xtra "SpellCheckXtra")
 alert output.findAndReplace("Testing", "tin", "lg")

 outputs:
  "Teslgg"

 

findAndReplaceAll (Object me, String word, String lookFor, String replaceWith)

描述: 将文字里面的全部指定字符串替换成另外一个字符串。
使用:
 
 object = new(xtra "SpellCheckXtra")
 alert output.findAndReplace("Testingtin", "tin", "lg")

 outputs:
  "Teslgglg"

 压缩包下载

标签集:TAGS:
回复Comments() 点击Count()
喜欢就顶一下

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}