如何从子类中触发父类方法?
我是 AS 3.0 的新手。请解答我的疑惑。我正在准备游戏,最初将显示登录页面。用户名验证通过后,即可进入游戏。
我有两个单独的登录页面和一个游戏页面。为了加载所有这些文件,我有加载登录页面和游戏文件的主文件。预加载完成后,将打开登录页面。使用应用程序域,我将访问登录按钮。
当按下登录按钮时,输入的用户名和密码将被发送到服务器进行验证。如果通过身份验证,用户即可进入游戏。
现在的问题是,我想根据用户名验证响应显示游戏屏幕。我不知道该怎么做。
I am new to AS 3.0. Please clear my doubts. I am preparing the game, which will initially display login page. After username validation, it enters into the game.
I have 2 separate pages for login and a game. To load all these files, I have main file which loads the login page and game file. When the preloaded completes, the login page opens. Using application domain, I will access the login button.
When the login button is pressed, the user name and password entered will be sent to the server for validation. If authenticated, the user enters the game.
Now the problem is, I want to show game screen based on the username validation response. I am not sure how to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自构造函数的 super()
来自继承方法的 super.functionYouAreInheriting()
记住还要传递适当的参数
http://ntt.cc/2009/07/26/beginning-actionscript-3-super-this-setter-getter.html
super() from constructors
super.functionYouAreInheriting() from inherited methods
remember to pass the appropiate arguments as well
http://ntt.cc/2009/07/26/beginning-actionscript-3-super-this-setter-getter.html