| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- | |
| Licensed to the Apache Software Foundation (ASF) under one or more | |
| contributor license agreements. See the NOTICE file distributed with | |
| this work for additional information regarding copyright ownership. | |
| The ASF licenses this file to You under the Apache License, Version 2.0 | |
| (the "License"); you may not use this file except in compliance with | |
| the License. You may obtain a copy of the License at | |
| http://www.apache.org/licenses/LICENSE-2.0 | |
| Unless required by applicable law or agreed to in writing, software | |
| distributed under the License is distributed on an "AS IS" BASIS, | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| See the License for the specific language governing permissions and | |
| limitations under the License. | |
| --> | |
| <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" applicationComplete="init()" horizontalAlign="left"> | |
| <mx:Script> | |
| <![CDATA[ | |
| import com.adobe.linguistics.spelling.*; | |
| import mx.controls.textClasses.TextRange; | |
| private var _newdict:HunspellDictionary = new HunspellDictionary(); | |
| private var sp:SpellChecker; | |
| private function init():void { | |
| _newdict.addEventListener(Event.COMPLETE, handleLoadComplete); | |
| _newdict.load("dictionaries/en_US/en_US.aff", "dictionaries/en_US/en_US.dic"); | |
| } | |
| private function handleLoadComplete(evt:Event):void | |
| { | |
| sp = new SpellChecker(_newdict); | |
| } | |
| private function checkText():void { | |
| var wordPattern:RegExp =/\b\w+\b/; // match next word... | |
| var inputValue:String = inputText.text; | |
| var offset:int, curPos:int; | |
| for ( ; ; ) { | |
| var res:Array = inputValue.match( wordPattern); // lookup word by word.... | |
| if ( res == null ) break; | |
| if ( !sp.checkWord(res[0]) ) { | |
| offset = inputText.text.length-inputValue.length; | |
| curPos = inputValue.indexOf(res[0]); | |
| var currentRange:TextRange = new TextRange(inputText, false, offset+ curPos, offset+ curPos+res[0].length); // mark mispelled word. | |
| currentRange.color = "red"; | |
| } | |
| inputValue = inputValue.substr(inputValue.indexOf(res[0])+ res[0].length); | |
| } | |
| } | |
| ]]> | |
| </mx:Script> | |
| <mx:HBox> | |
| <mx:Button id="check" label="Check Text" click="checkText()" /> | |
| </mx:HBox> | |
| <mx:TextArea id="inputText" height="100%" width="100%"/> | |
| </mx:Application> |