使用 Flex 3/Actionscript 在后台制作一系列图像动画?
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.