In CS6, I am trying to apply the Squiggly functionality to a TLFTextField in a movie clip. I've read the thread here: Using Squiggly in Flash CS5 and followed the setting recommendations, except my AS3 class is on the movieclip not the document. But there is no spell-checking and there is no compiler or run-time errors.
The movie clip that contains the TLF has a AS3 class called UserInput.
package {
import flash.display.MovieClip;
import fl.text.TLFTextField;
import flashx.textLayout.edit.EditManager;
import com.adobe.linguistics.spelling.SpellUIForTLF;
public class UserInput extends MovieClip {
// stage instances
public var userInput:TLFTextField;
public function UserInput() {
// add spell checking
userInput.textFlow.interactionManager = new EditManager();
SpellUIForTLF.enableSpelling(userInput.textFlow, "en_US");
}
}
}
I can enter text but there is no spell-checking. Am I missing something?
Thanks for your help.