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,
- reset the application to its load state if the user logs out or session ends etc - ie reload the page and start again
http://myUrl.com/page1
- as the site will not be updated in one go, if the user reaches the end of the app and needs to navigate to a html page from the app loaded via 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 isnavigateToURL
function.