I have a auto open popup using Actionscript 3 and I don't want it to have any of the menu bars, scroll bars none of that, can anyone help me, here is my code:
var url:String = "https://www.google.co.uk/?gws_rd=ssl";
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_blank'); // second argument is target
} catch (e:Error) {
trace("Error occurred!");
}