irishguy
irishguy

Reputation: 671

Pointing to a tab within a Flex application

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

Answers (1)

Jacob
Jacob

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

Related Questions