Hello
I use the script below to go to the function of the url in actionscript 3, and it works fine:

btn.addEventListener (MouseEvent.CLICK, e);

function e(e:MouseEvent):void {}
navigateToURL (new URLRequest ("http://www.angelfire.com/in/HisTruth/copyofindex.html"));
}


That is fine, but I want the first window to open and close to the top in its pointing to.
How can I add the correct script for this?

Tseyigai