flex 4.6
seems like a noob Q. but I would like to change the browser url page not domain, from http://myUrl.com/page1
to http://myUrl.com/page2
. I have tied IBrowserManager .setFragment(page2) this seems to add to the existing url http://myUrl.com/page1#page2
.
Is there a way to do this?
I am looking to do two things,
http://myUrl.com/page1
http://myUrl.com/page2
.Thx Art
BrowserManager
is supposed to manage application states and support inner history of Flex application. setFragment
method controls only url part after #
, which actually doesn't reload the page. What you need is navigateToURL
function.
navigateToURL("http://myUrl.com/page2", "_self");