是否可以在 Actionscript 2.0 中访问框架的 NAME 属性?
我将帧 50 命名为 _foo
(在 IDE 中)。
我可以随时跟踪 this._currentFrame
(并获取一个数字)。
我可以gotoAndPlay("_foo");
。
但是我怎样才能知道电影播放时当前帧是否是 _foo
呢?
这可能吗?
I name frame 50 _foo
(in the IDE).
I can trace this._currentFrame
at any time (and get a number).
I can gotoAndPlay("_foo");
.
But how can I find out if the current frame IS _foo
as the movie plays?
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 ActionScript 2 中,无法访问当前帧的名称/标签(此功能是在 ActionScript 3 中添加的)。
但是,您可以使用以下代码来确定播放期间的当前帧编号:
要进一步阅读,请务必检查 Adobe livedocs 条目中的 MovieClip.onEnterFrame
In ActionScript 2 there is no way to access the Name / Label of the current frame (this feature was added in ActionScript 3).
However, you could use the following code to determine the current frame number at during playback:
For further reading, be sure to check the Adobe livedocs entry for MovieClip.onEnterFrame