Adobe Air Android / 阿拉伯语文本问题

Adobe Air Android / Arabic text issue

我正在为 IOS 和 Android 使用 Adob​​e Flash Air 现在的问题是阿拉伯语 RTL 我不会写阿拉伯语。 我的

Input Text is Classic not " TLF Text "

TLF 问题是键盘在 android..

中没有显示

Example

1) 你尝试过做一些研究吗?我用谷歌搜索 as3 "android" keyboard not showing
以上 link 的第一页结果中建议的解决方案有什么问题?

2) 考虑用Stage text and there's an introduction article一下吧。

3) 尝试像下面这样的东西(未经测试)作为起点。自显示 none 以来很难修复您的代码。

另请先阅读此 guide。可能会有用。

var testInput : TextField = new TextField();
testInput.needsSoftKeyboard = true;
testInput.type = "input";
testInput.addEventListener(FocusEvent.FOCUS_IN, onFocusText);

stage.addChild(testInput);

function onFocusText( e:FocusEvent ):void
{
    testInput.requestSoftKeyboard();
}