there is a basic example of deeplinking in flash that comes with swfaddress; it uses the solution of checking the url with a switch() statement and does something based on that case string.
what is the best way to go about linking into multiple levels?
i.e.
...url.com#/clients ...url.com#/projects ...url.com#/contact
these are simple, but what is the best practice when you get into this:
...url.com#/projects/stevemadden/ ...url.com#/projects/stevemadden/fall2008 ...url.com#/projects/stevemadden/recovery
etc?
would the best thing just split the response string into an array by "/" and then just have a series of callbacks or is there a better way?
thanks!