Flash AS3 根文档链接
嗨,我有一个主文档/fla,我创建了一个游戏类,在文档/fla 文件中实例化它,它现在运行我想在该游戏类中放置一个按钮,可以告诉根文档/fla 跳转到一定的框架。我该怎么办?
谢谢
Hi I have a main document/fla, and ive created a game class, instantiated it in the document/fla file and it runs now i want to put a button inside that game class that can tell the root document/fla to jump to a certain frame. How would i go about this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的游戏类可以调度一个事件 (GameEvent.SUPER_ACTION)。然后在你的fla中:
或者如果游戏的按钮是公开的:
这是一个AS3事件流示例:http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e53.html
Your game class could dispatch an event (GameEvent.SUPER_ACTION). Then in your fla :
or if the game's button is public :
Here is an AS3 event flow example : http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e53.html