Question
Get url vs navigate to url
I need to have buttons on a flash banner open a page using a relative link" intro_develop.asp"
I have buttons coded as
function buttonClickone(e:MouseEvent):void
{
navigateToURL(new URLRequest(" intro_develop.asp"));
}
which gives me the page opening in a new window.
What url code do I use for a relatve path to open in its own window same but add _self?
RD