Flex Builder:我想从 titleWindow 转到面板

发布于 2024-08-27 12:00:11 字数 520 浏览 4 评论 0原文

我正在构建一个用户登录页面,我想从 titleWindow 转到面板。 我正在使用以下函数,但它总是带我回到parentApplication。

我的问题是如何转到我的面板而不是应用程序页面?

我知道我正在使用parentApplication,但我应该使用什么?

这是我的代码的一部分:

private function handleLogin(event:ResultEvent):void {
            Alert.show("You have succesfully logged in.", "Information", Alert.OK, null, null, null, Alert.OK);   

            parentApplication.accountPage.mainService.getAccount();                          
            PopUpManager.removePopUp(this);
        }

I'm building a user login page and I want to go from titleWindow to Panel.
I'm using the following function but it always takes me back to parentApplication.

My question is how can I go to my panel and not to Application page?

I know that I'm using parentApplication but what should I use instead?

Here is a part of my code:

private function handleLogin(event:ResultEvent):void {
            Alert.show("You have succesfully logged in.", "Information", Alert.OK, null, null, null, Alert.OK);   

            parentApplication.accountPage.mainService.getAccount();                          
            PopUpManager.removePopUp(this);
        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

未央 2024-09-03 12:00:11

如果您使用父容器来保存一些child-mxml,则可以在父容器和子容器之间建立连接,如下所示:

(this.parentDocument as yourParentContainer's id).childContainer's id

在当前处于后台的页面上工作或在我在一个页面上收集一些数据,然后将其发送到另一页面,然后再将其显示在用户面前。

If you are using a parent container to hold some child-mxmls, you can establish connections between the parent and children like this:

(this.parentDocument as yourParentContainer's id).childContainer's id

I always use this linking when working on a page that is currently in background or when I collect some data on one page and send it to the other page before it comes up in front of the user.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文