Reputation: 543
Is not it possible to add a flex url to bookmarks. If not,Please let me know if any alternatives are there. Thank you.
Upvotes: 1
Views: 452
Reputation: 11912
There is a concept in Flex called deep linking. You can read all about it in the docs.
You basically just need one class: the BrowserManager. This class allows you to:
So you can have URL's like
which can tell your application to display the right information.
Why is there a pound sign in the URL? That's because we don't want to reload the entire application when the user changes the URL. So we stay on one page with the same app loaded; the part behind the pound signs is information that is being sent to the Flex app, which can change it's state according to this information.
Upvotes: 3