如何在 Flex 中刷新应用程序?
我在 Flex 4 中设计了一个测验应用程序。最后我想重新加载我的应用程序(即刷新浏览器中的页面)。最后我会在警报中显示分数。之后我想重新加载当前的应用程序。我该怎么做?
I have designed a quiz application in Flex 4. At the end I want to reload my application (that is refresh the page in the browser). At the end I will show score in an alert. After that I want to reload the current application. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要使刷新在单击警报后才发生:
您可以通过将“NO”选项从或作为 Alert.show 的第三个参数删除来删除该选项。
To cause the refresh to not happen until after your alert is clicked:
You can remove the option of "NO" by removing it from the or as the 3rd parameter of Alert.show.
只需导航回您的网站:)
要获取当前页面的 url,您可以使用以下代码:
因此您的代码将变为:
just navigate back to your website :)
to get the current page's url, you can use the following code:
so your code then becomes:
另一个答案。
我们必须
在 javascript 中的 html 文件中调用 AS3 中的函数,我们必须定义函数 reload
another answer.
we have to call function in AS3
in html file within javascript we have to define function reload