Solved! Go to Solution.
navigateToURL(new URLRequest(URL), '_self');
navigateToURL(new URLRequest(URL), '_blank');
Window: The browser window or HTML frame in which to display the document indicated by the request parameter. You can enter the name of a specific window or use one of the following values:
"_self" specifies the current frame in the current window.
"_blank" specifies a new window.
"_parent" specifies the parent of the current frame.
"_top" specifies the top-level frame in the current window.