I have a flash file with some buttons, which open some http links using navigateToURL.
For example:
btn1.addEventListener(MouseEvent.CLICK, openPage)
function openPage(e:Event)
{
navigateToURL(new URLRequest("http://www.google.com"), "_blank")
}
It works fine on server, but when I try to run it offline/local, it does not open any link or shows any security info box.
My client needs to copy the whole website on a DVD and the buttons must open the live links(http).
Please help.