Link to home
Start Free TrialLog in
Avatar of KCTeam
KCTeam

asked on

How can I open a new window in Flex 3 under Opera without unload my app ?

Hi,

For my development, I use Flex 3.0.1.

At beginning, user type his username and password. But I have a link to retrieve forgotten password which open a URL in a new window (or tab).
In IE, FF and Safari, I haven't any problems, but under Opera, new window is opened in a new tab but my initial flex app is unload.

Did someone have a solution ?
Avatar of evcr
evcr
Flag of United Kingdom of Great Britain and Northern Ireland image

can you post some code showing the problem?
ASKER CERTIFIED SOLUTION
Avatar of evcr
evcr
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
oh i see what you mean, i'll get back to you
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of KCTeam
KCTeam

ASKER

First, thanks for your answers.

My app is very huge, I cannot put code here, but I'm still working on problem identification.

What I know :
  1. I can only use navigateToURL() to open URL because other methods are blocked by Opera. I use "_blank" parameter.
  2. With a new very simple project, this is working properly.
My app is build like this :
  • MainApp.mxml which extends from MainAppClass.as
  • MainAppClass.as which
    • On creation complete : initialize new Login object
  • Login.as which
    • Build a new LoginGUI
    • popup LoginGUI with command :
      • PopUpManager.addPopUp(aLoginGUI, (Application.application as MainApp), false)
    • ==>> Here, user can click on links (==>> problems)
  • LoginGUI.mxml

I don't expect a solution, but if you (or somebody else)  have ideas...
For my part, I try to reduce code to identify problem.


Thanks a lot.
Avatar of KCTeam

ASKER

To help you to understand, I attach an animated screen shot of what happening. Sorry for poor quality and French language used.

At the end in flash context menu, "Animation non chargée" => "Non loaded animation".

error.gif
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of KCTeam

ASKER

It's the same.

I'm going to try to reduce code to identify problem.
Avatar of KCTeam

ASKER

Very hard problem, very hard to explain