Flex 自动获取焦点 监听全局键盘事件

在mxml里监听addedToStage事件

protected function application1_addedToStageHandler(event:Event):void
            {
                this.stage.focus=this
                this.stage.addEventListener(KeyboardEvent.KEY_DOWN, application1_keyDownHandler);
            }

在嵌入SWF的html里面加入如下的功能:

<body onload="document.getElementById('swf id').focus()"> 

 或者可以修改index.template.html

<body onload="document.getElementById('${application}').focus()">

 

posted @ 2013-11-06 22:37  ddw1997  阅读(1226)  评论(0编辑  收藏  举报