Flexブラウザウィンドウの互換性はIE 6とIE 7です.


flexは、jsコードを呼び出すことによって、ブラウザウィンドウを閉じることができます.コードは以下の通りです
Alert.buttonWidth=60;
				Alert.yesLabel=" ";
				Alert.cancelLabel=" ";
				var alert:Alert=Alert.show("        ?","  ",Alert.YES|Alert.CANCEL,this,function(event:CloseEvent):void{
					switch(event.detail){
						case Alert.YES:
							//javascript:window.opener=null;window.close()");//       
							//var request:URLRequest = new URLRequest("javascript:window.close()");//      
							//    window.open('','_self')   IE7                
							var request:URLRequest = new URLRequest("javascript:window.opener=null;window.open('','_self');window.close()");
							navigateToURL(request,"_self");
							break;
						case Alert.CANCEL:
							break;
					}
				},null,Alert.CANCEL);
				PopUpManager.centerPopUp (alert);
				var newX:Number = (Application.application.width-alert.width)/2;
           		var newY:Number = (Application.application.height-alert.height)/2;
           		alert.move(newX,newY);
 
注意:
    window.open('',''self')このコードを入れないなら、IE 6でテストするのが正しいですが、IE 7で問題が発生します.IE 7 Flexの決定ボタンをクリックすると、ブラウザはウィンドウを閉じるかどうかのヒントボックスをポップアップします.