Reputation: 671
Does anyone know how I would load up a flex application and on load the application would open on a different tab within the application. The only thing I can think of is sending a parameter into the application to tell it where to go, but how does the app load that tab then?
Upvotes: 0
Views: 41
Reputation: 78840
You can do this through Deep Linking. Basically, you can use the fragment (hash) of the URL to jump to a location in the application.
Upvotes: 1