如何在点击事件上转到特定帧

发布于 2024-12-11 12:14:26 字数 67 浏览 0 评论 0原文

我创建了一个包含五个影片剪辑的 Flash。我想当我按下它们中的每一个来播放主时间轴上的特定帧时?我怎样才能做到这一点?

I have created a flash with five movie clips. I want when I press each of them to go and play specific frames on the main timeline? How can I do that?

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

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

发布评论

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

评论(2

纵情客 2024-12-18 12:14:26
btn.addEventListener(
    MouseEvent.CLICK,
    function(e:MouseEvent):void
    {
        MovieClip(root).gotoAndPlay(18);
    }
);

其中 btn 是按钮实例名称,18 是您希望主时间轴播放的帧。

或者您可以编写一个函数来轻松分配给多个按钮:

function clickFrame(button:Sprite, frame:int):void
{
    button.addEventListener(
        MouseEvent.CLICK,
        function(e:MouseEvent):void
        {
            MovieClip(root).gotoAndPlay(frame);
        }
    );
}

clickFrame(btn1, 18);
clickFrame(btn2, 67);
clickFrame(btn3, 114);
btn.addEventListener(
    MouseEvent.CLICK,
    function(e:MouseEvent):void
    {
        MovieClip(root).gotoAndPlay(18);
    }
);

Where btn is the button instance name, and 18 is the frame you want the main timeline to play from.

Or you can write a function to make it easy to assign to multiple buttons:

function clickFrame(button:Sprite, frame:int):void
{
    button.addEventListener(
        MouseEvent.CLICK,
        function(e:MouseEvent):void
        {
            MovieClip(root).gotoAndPlay(frame);
        }
    );
}

clickFrame(btn1, 18);
clickFrame(btn2, 67);
clickFrame(btn3, 114);
终止放荡 2024-12-18 12:14:26

如果单击按钮后它继续循环到下一帧,请尝试添加

>>stop();
btn.addEventListener(
    MouseEvent.CLICK,
    function(e:MouseEvent):void {
        MovieClip(root).gotoAndPlay(18);
        ***stop();***
 });

If it keeps looping to the next frame as soon as the button is clicked try adding

>>stop();
btn.addEventListener(
    MouseEvent.CLICK,
    function(e:MouseEvent):void {
        MovieClip(root).gotoAndPlay(18);
        ***stop();***
 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文