如何向我的 flash cs4 添加类?
我即将在 Flash 中创建一个简单的演示,其中有 3 个图层、3 个关键帧。 目前我只是使用一些简单的 gotoAndStop() 移动到下一个关键帧。
但现在我需要一个自定义事件来执行此操作,但我无法在关键帧的操作内创建类,因此我无法创建自定义事件。
到目前为止我只有 Flex 方面的 AS3 开发经验。
提前致谢。
I am about to create a simple demo in flash where I have 3 layers, 3 keyframes.
Currently I am just use some simple gotoAndStop() to move to the next keyframe.
But now I need a custom event to do that but I can't create a class inside the action of a keyframe so I am not able to create a custom event.
I just have AS3 developing experience in flex so far.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将任何类导入到您的 Flash IDE 应用程序中:
之后您只需执行在 Flex 中执行的常规用法即可。不要忘记将源路径文件夹中的自定义事件类作为您的 fla,或者将您的 fla 配置为具有正确的类源路径。
(发布设置/Actionscript-settings...源路径)
you can import any class to your flash ide application:
after this you just have to do the regular usage you would do in flex. Don't forget to have you Custom Event class in the source path folder as your fla, or to configure your fla to have the correct source path of your classes.
(Publish settings/Actionscript-settings...source path)