getNeedsIME method
Return true if this script typically requires an input method engine to enter its characters.
Implementation
bool getNeedsIME() {
final String jscode1 = 'new ScriptInfo("$script").getNeedsIME()';
final String result = ILibJS.instance.evaluate(jscode1).stringResult;
return result.toLowerCase() == 'true';
}