gpt4 book ai didi

flash - 伪造进度条

转载 作者:行者123 更新时间:2023-12-04 12:49:50 26 4
gpt4 key购买 nike

作为 Flash 的初学者,我正在执行一项任务,我应该创建一个应该从 0% 到 98% 的假进度条。

现在我有我的进度线,上面有一个白色的补间,从左到右表示假下载。见图片。

alt text

在补间运行时,我想增加百分比,使其与 98% 匹配并停止 - 是否可以这样做?如何?

我的文档在 AS3 中,但还没有 ActionScript ,所以现在没关系。我主要做时间线。

谢谢!

最佳答案

让我们假设,你的“98%”是一个标签,在舞台上有一个 id“txtPercent”。

例如,您可以编写一个函数来监听 enterFrame 事件并更新您的 txtPercent 标签。

在第一帧打开 Action 编辑器并写入:

import flash.events.*;

//add enterFrame event listener, when timeline frame is passed the listener function is invoked
addEventListener(Event.ENTER_FRAME, updateProgress);

function updateProgress(event:Event) {
//update the label with percent count
txtPercent.text = (currentFrame / totalFrames * 100).toFixed(0) + "%";
}

不要忘记放置 stop();在最后一帧的 ActionScript 编辑器中。

关于flash - 伪造进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3573573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com