SWFAddress
From Wikicliki
Revision as of 09:50, 20 June 2008 by 85.8.189.160 (talk)
SWFAddress allows deep-linking. Should be used with SWFObject at the same time.
insert this after swfobject:
<script type="text/javascript" src="swfobject/swfobject.js"></script> <script type="text/javascript" src="swfaddress/swfaddress.js"></script>
write your navigational logic:
SWFAddress.onChange = function() {
var navigation = new Object();
navigation.home = {frame: 1, title: "Welcome"};
navigation.about = {frame: 10, title: "About Us"};
navigation.contact = {frame: 20, title: "Contact Us"};
var value = SWFAddress.getValue();
website_mc.gotoAndStop(navigation[value].frame);
SWFAddress.setTitle(navigation[value].title);
}
set value on buttons which lead to their own links:
this.onRelease = function() {
SWFAddress.setValue('/portfolio/');
}
your html links in your text boxes can be like this:
<a href="asfunction:SWFAddress.setValue,/portfolio/">Go to Portfolio</a>
See Also
- SWFObject
- Actionscript Sandbox
- SWFAddress, SWFObject, and Flash - someone tries to explain how to use it in AS3
- Adobe Developer Center on Deep Linking methods - another method offered for Deeplinking using the Hash
- SWFAddress Website