使用 Flex 3/Actionscript 在后台制作一系列图像动画?

发布于 2024-10-03 17:52:55 字数 173 浏览 2 评论 0原文

我想在 uicomponent 中对一系列背景图像进行动画处理,同时也动态地向该组件添加和删除组件。

我的第一个问题是: 1.) 使用 Flex 3 对图像序列进行动画处理的最佳方式是什么? 2.) 动态处理在后台添加和删除组件的最佳方法是什么?

任何帮助/信息将不胜感激!

谢谢你!

I would like to animate a sequence of background images within a uicomponent but also dynamically add and remove components to this component.

My first question would be:
1.) What's the best way to animate a sequence of images using Flex 3?
2.) What's the best way to handle adding and removing components on top of the background dynamically?

Any help/information would greatly be appreciated!

Thank you!

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

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

发布评论

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

评论(1

北笙凉宸 2024-10-10 17:52:55

在 ui 组件的 mxml 中声明一个 mx:Image 并为其指定一个 id。设置一个计时器循环,以您喜欢的时间间隔更改 mx:Image 上的“源”属性 (id.source = )。要动态添加和删除组件,只需使用 addChild/removeChild 或 addElement/removeElement,具体取决于您正在使用的显示对象的类型。 mx:Image 应始终位于动态添加的组件后面,因为它是在动态添加的组件之前创建和添加的。

In the mxml for your ui component declare an mx:Image and give it an id. Set up a timer loop that changes the "source" attribute (id.source = ) on your mx:Image at an interval you like. To add and remove components dynamically just use addChild/removeChild or addElement/removeElement depending on the type of display object you're working with. The mx:Image should always be behind the dynamically added components as it was created and added before them.

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