检测从 adobe air 应用程序到另一个窗口的切换

发布于 2024-11-24 16:16:11 字数 82 浏览 0 评论 0原文

我如何确定是否有人切换到另一个窗口(例如记事本),同时保持air应用程序在后面打开,我正在寻找一种方法来检测用户是否从air应用程序切换到另一个窗口。

How can I determine if someone switch to another window (say notepad) while keeping air app open behind, I was looking for a way to detect if user switch form air app to another.

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

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

发布评论

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

评论(1

仅此而已 2024-12-01 16:16:11

查看激活和停用事件处理程序:

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                   xmlns:s="library://ns.adobe.com/flex/spark" 
                   xmlns:mx="library://ns.adobe.com/flex/mx" 
    deactivate="deactivateHandler(event)" 
    activate="activateHandler(event)"
    >

<fx:Script>
    <![CDATA[
        import mx.controls.Alert;
        protected function deactivateHandler(event:Event):void
        {
            mx.controls.Alert.show('you left!');
        }

        protected function activateHandler(event:Event):void
        {
            mx.controls.Alert.show('you came back!');   
        }

    ]]>
</fx:Script>

<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>

Check out the activate and deactivate event handlers :

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" 
                   xmlns:s="library://ns.adobe.com/flex/spark" 
                   xmlns:mx="library://ns.adobe.com/flex/mx" 
    deactivate="deactivateHandler(event)" 
    activate="activateHandler(event)"
    >

<fx:Script>
    <![CDATA[
        import mx.controls.Alert;
        protected function deactivateHandler(event:Event):void
        {
            mx.controls.Alert.show('you left!');
        }

        protected function activateHandler(event:Event):void
        {
            mx.controls.Alert.show('you came back!');   
        }

    ]]>
</fx:Script>

<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>

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