SWFAddress

Earlier I posted a little javascript about how to deep link with the anchor variable in the url. I was surfing some design sites and found one using a similar method. Low and behold after viewing source, a complete script that sits on SWFObject called SWFAddress. I guess I am living under a rock.

Here’s an example:

myButton.onRelease = function() { 
    SWFAddress.setValue(‘/my-deep-link/’)
} 
SWFAddress.onChange = function() { 
    myNavigationLogic()
    SWFAddress.setTitle(‘My deep link’)
}

Here’s the site:
http://www.asual.com/swfaddress/

Here’s a direct link to getting started and good practices
http://www.asual.com/blog/swfaddress/2007/05/18/swfaddress-bad-practices.html

Leave a Reply