Spelling Plus Library (SPL)

Examples

Select an example from the drop-down. All the samples on this page are included when you purchase SPL.

Content Not Found.

This is a sample application with SPL components throughout. Add, delete, and modify product titles and descriptions.

%%REPLACE%%
Below is a screenshot of the flash components in the IDE, and the resulting SWF. SPLTag components are attached to textFields or components by drag and drop in the IDE. The SPLWordListLoader component lets you visually set up loading, parsing and assigning the word list. The SPLCustomWordListLSO allows you to visually set up a custom user dictionary that is stored in Local Shared Objects and reused on subsequent visits.
%%REPLACE%%
This example places an SPL component on the itemEditor of a Flex DataGrid. Click any cell to edit the contents, and the SpellingHighlighter will be applied.

%%REPLACE%%
SPL can be applied directly to most Flex components directly, with a simple MXML tag. MXML tags are also provided to simplify setting up word list loading and custom user dictionaries.
	< spelling:SPLWordListLoader url="gWordList.wl" />
	< spelling:SPLCustomWordListLSO lsoName="customDictionary" />
	< mx:TextArea id="textArea" />
	< spelling:SPLTagFlex target="{textArea}" />


%%REPLACE%%

Change the highlight color:

mySpellingHighlighter.color = 0x0000FF;
%%REPLACE%%
Apply a custom highlighter using actionscript.
mySpellingHighligher.underlinePattern = mySprite; // any sprite or bitmapdata
%%REPLACE%%
Demonstrates how you can use the SPL engine to create standard spell checking dialogs in Flash or Flex.

%%REPLACE%%
SPL 1.2 supports languages other than English. Select a language to change the word list.

%%REPLACE%%