在 as3 中处理 iOS home 按钮按下

发布于 2024-12-27 15:39:22 字数 361 浏览 1 评论 0原文

我需要帮助检测和处理运行 AIR 应用程序的 iPhone/iPod Touch 上按下的主页按钮。我尝试过

NativeApplication.nativeApplication.addEventListener(KeyboardEvent.KEY_DOWN, handleKeys, false, 0, true);

function handleKeys(event:KeyboardEvent):void
{
    if(event.keyCode == Keyboard.HOME) {
         //do something
    }
}

但没有运气。有什么想法吗?具体来说,我想防止应用程序在按下主页按钮时关闭。

I need help detecting and dealing with the home button being pressed on a iPhone/iPod Touch running an AIR app. I tried

NativeApplication.nativeApplication.addEventListener(KeyboardEvent.KEY_DOWN, handleKeys, false, 0, true);

function handleKeys(event:KeyboardEvent):void
{
    if(event.keyCode == Keyboard.HOME) {
         //do something
    }
}

without luck. Any ideas? Specifically, I want to prevent the app from closing when the home button is pressed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装迷糊 2025-01-03 15:39:22
import flash.events.Event;

addEventListener(Event.ACTIVATE, activateListener);
addEventListener(Event.DEACTIVATE, deactivateListener);

private function activateListener(e:Event):void{
        //do something when awakened

}


private function deactivateListener(e:Event):void{
        //do something when home button is pressed.

}
import flash.events.Event;

addEventListener(Event.ACTIVATE, activateListener);
addEventListener(Event.DEACTIVATE, deactivateListener);

private function activateListener(e:Event):void{
        //do something when awakened

}


private function deactivateListener(e:Event):void{
        //do something when home button is pressed.

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文