Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Reason I ask is I have bug in ie using flash.external.ExternalInterface from the parent where the child popup says window.opener is null or not an object.

so basically

    window.opener.location.href="http://myurl.com?part=2" 
    self.close();

is fine on firefox but not ie.

is there a way to set this property manually if window.opener is null?

thanks!

share|improve this question
1  
I didn't want to put this as an answer, because this is more of a guess: First, I think you shouldn't be able to - for security reasons. Second - there may be bugs that allow it, esp. if we are talking about MSIE. Third - you could change your Flash to call JavaScript to open a new window, instead of doing that directly, in which case, I presume, the opener wouldn't be null. – wvxvw Mar 2 '12 at 9:58
I'd say that sounds pretty accurate. – MikeW Mar 4 '12 at 22:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.