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 17, 2008 at 10:08 PM, markgoldin_2000 [EMAIL PROTECTED]
 wrote:

 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


 

 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives:
 http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
 Links






[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