检查 Flex 3 中是否正在播放任何效果

发布于 2024-12-12 03:42:00 字数 530 浏览 0 评论 0原文

我在 Flex 应用程序中使用了一些效果...它们都在 mxml 标签内声明... 例如:

<mx:Fade id="fadeIn" alphaTo="1" duration="500"/>
<mx:Fade id="fadeOut" alphaTo="0" duration="500"/>
<mx:Move id="moveEffect" duration="500"/>
<mx:Rotate id="rotateEffect" duration="500"/>

通常,当我触发某些效果时,如果有任何效果正在播放,我想禁用所有交互,所以我想知道除了

if (!fadeIn.isPlaying && !fadeOut.isPlaying && !moveEffect.isPlaying && !rotateEffect.isPlaying)

非常感谢您的帮助之外,还有什么方法可以在动作脚本中检查此类内容!

I have some effects which I use in my Flex app... They are all declared within mxml tags...
For example:

<mx:Fade id="fadeIn" alphaTo="1" duration="500"/>
<mx:Fade id="fadeOut" alphaTo="0" duration="500"/>
<mx:Move id="moveEffect" duration="500"/>
<mx:Rotate id="rotateEffect" duration="500"/>

Usually, when I trigger some effect, I want to disable all interaction if any of effects is playing, so I would like to know is there a way to check such thing in actionscript besides

if (!fadeIn.isPlaying && !fadeOut.isPlaying && !moveEffect.isPlaying && !rotateEffect.isPlaying)

Thanks a lot for help!

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

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

发布评论

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

评论(1

心是晴朗的。 2024-12-19 03:42:00

使用 ArrayVector 包装您的效果:

<fx:Declarations>
    <fx:Vector id="effects" type="mx.effects.Effect">
        <mx:Fade id="fadeIn" alphaTo="1" duration="500"/>
        <mx:Fade id="fadeOut" alphaTo="0" duration="500"/>
        <mx:Move id="moveEffect" duration="500"/>
        <mx:Rotate id="rotateEffect" duration="500"/>
    </fx:Vector>
</fx:Declarations>

private function isEffectPlaying():Boolean
{
    for (var i:int = 0; i < effects.length; i++)
    {
        if (effects[i].isPlaying)
            return true;
    }
    return false;
}

Wrap your effects with Array or Vector:

<fx:Declarations>
    <fx:Vector id="effects" type="mx.effects.Effect">
        <mx:Fade id="fadeIn" alphaTo="1" duration="500"/>
        <mx:Fade id="fadeOut" alphaTo="0" duration="500"/>
        <mx:Move id="moveEffect" duration="500"/>
        <mx:Rotate id="rotateEffect" duration="500"/>
    </fx:Vector>
</fx:Declarations>

private function isEffectPlaying():Boolean
{
    for (var i:int = 0; i < effects.length; i++)
    {
        if (effects[i].isPlaying)
            return true;
    }
    return false;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文