
Re: Quitting Flash player via ExternalInterface
Hi,
as you are talking about the use of ExternalInterface:
With ExternalInterface you can execute
any javascript code you want (in browser of cource

). It's also superior to the well known navigateToURL because i.e.
Code:
navigateToURL(new URLRequest("javascript:history.back()", "_self"))
is buggy in in Internet Explorer but
Code:
ExternalInterface.call("history.back()")
works nicely in all browsers

Lg
warappa