At present no, sorry. We do have it on our to do list to add dictionary selection as an option. However you can make it possible in a way similar to what we do for the non English pages in our demo project.
Code:
function LanguageList_OnChange(ddl) {
rapidSpell.setParameterValue('default', 'GuiLanguage', ddl.value);
rapidSpell.setParameterValue('default', 'LanguageParser', ddl.value);
rapidSpell.setParameterValue('default', 'DictFile', "~/path/to/language.dict");
rapidSpell.ayt_refreshUnderlines();
}
where ddl is a <select> element. You just need to set the DictFile parameter to the correct path for the language. The assumption in the code above is that the ddl select element will have values like ENGLISH, FRENCH, GERMAN etc.
Jim
-your feedback is helpful to other users, thank you!