Re: [flexcoders] Problem with ExternalInterface.call

2008-08-18 Thread Toby Ashley
What specifically is the problem here? If you uncomment the reload line, presumably it'll reload the entire page without you seeing the Alert box. If you want to wait for the Alert box to be closed before reloading the page, you'll need to listen out for the CloseEvent.CLOSE event. On Sun, Aug

[flexcoders] Problem with ExternalInterface.call

2008-08-17 Thread markgoldin_2000
public function setPlan(resultXML:XML):void { Alert.show(resultXML.toString()); //ExternalInterface.call(window.location.reload(true)); } If I uncomment ExternalInterface.call then reload goes with Alert box being shown. Is that right? Thanks