1

我正在使用 Flash Builder 4.6。并为一个弹性项目工作,我想在初始化完成后在 textInput 上设置焦点。我正在使用代码myTextInput.setFocus();这工作正常光标闪烁但没有突出显示 TextInput 以聚焦 TextInput。我的所有代码在这里:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" initialize="init();">
    <fx:Script>
        <![CDATA[
            private function init():void{
                myTextInput.setFocus();
            }
        ]]>
    </fx:Script>
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:Panel x="54" y="23" width="250" height="200">
        <s:TextInput x="98" y="42"/>
        <s:TextInput id="myTextInput" x="98" y="12"/>
    </s:Panel>
</s:Application>            
4

1 回答 1

0

索引模板:

function setFocus(){
  window.document.getElementById("APPNAME").focus();
  $('#myTextInput').focus();
  $('#myTextInput').focusEnables=true;
} 
  </script>  </div>

应用:

private function init():void{
  if (ExternalInterface.available) {
      ExternalInterface.call('setFocus');
  } 
}
于 2015-12-15T05:48:25.440 回答