SoFunction
Updated on 2025-04-02

Flex opens a new window and passes the main window data to the child window and returns

Let me talk about my needs first:

The main window opens a sub-window, and the main window has data to the open sub-window.

When the child window is closed, it returns to the main window directly.

-----------------------------------------------------------------------------------------------

My implementation method at the beginning was:

After the main window opens the child window, immediately =false, that is, hide the main window.

Execute =true before the child window is closed, that is, the main window is displayed, and then (this);.

This method is normal to open the sub-window, but it is not normal when returning to the main window. I don’t understand why it is the reason.

I hope to tell you if you know.

-----------------------------------------------------------------------------------------------

Later I thought of a way that suits my needs:

1. Open the sub-window in a non-modal manner.

2. Hide the parent window

3. Pass data to the child window.

4. The child window opens the page where the parent window is located.

-----------------------------------------------------------------------------------------------

The main code of the parent window is as follows:
Copy the codeThe code is as follows:

var wnd:Desk=new Desk();//Create a child window
(wnd, this, false);//Popt out in non-modal way
=false; //Hide the parent window
=deskId;//Transfer data to the child window
=deskPos;//Transfer data to the child window

The main code of the child window is as follows:
Copy the codeThe code is as follows:

var strUrl:URLRequest = new URLRequest("");//Open the page where the parent window is located
navigateToURL(strUrl,"_self");//Open in the same window
(this); //Exit the sub-window