Asual

SWFAddress - Docs

SWFAddress doesn't add deep linking support automatically but provides the simplest possible API that developers can use to implement it on their own.

Sample Usage

Include the SWFAddress JavaScript file right after SWFObject. When embedding it's mandatory to specify an ID for the SWF movie.

<script type="text/javascript" src="swfobject/swfobject.js"></script>
<script type="text/javascript" src="swfaddress/swfaddress.js"></script>
<script type="text/javascript">
swfobject.embedSWF("website.swf", "website", "100%", "100%", "9",
"expressInstall.swf", {}, { menu: "false" }, { id: "website" });
</script>

Include or import one of the provided ActionScript classes. SWFAddress comes with versions for AS1, AS2 and AS3.

Write your own navigation logic that will be executed when the address is changed.

SWFAddress.onChange = function () {
// Your code goes here.
}

Call the SWFAddress setter method from every button or action that requires deep linking.

this.onRelease = function () {
SWFAddress.setValue('/portfolio/');
}

Supported Browsers

API Reference