SWFAddress almost working, but not quite!

Hi I’m a beginner at actionscript and am in the process of rewriting my whole site. i’m trying to get to grips with SWFAddress for deep linking and back button implementation and am having a bit of a headache.

I’ve created a little tester swf which can be found here

http://swiveluk.com/index2.html#/

When you click either of the two smaller boxes, the address changes accordingly, and my as code takes the value from the url query string and uses it to change the opacity of the larger box- all good so far.

the only problem is that changing the url query string directly has no effect on my movie. What am i doing wrong!?

any help would be greatly appreciated. i get the feeling that i only need to change one little thing to get it working but i just can’t see it.

Thanks in advance

p.s. here’s my code

SWFAddress.onChange = function(){

var Address = SWFAddress.getValue();
// Your navigation code here.

var nm = Address.substring(1,Address.length -1);
trace(navigation[nm]);
navigation[nm]();

var navigation = new Object();

navigation.about = function(){
    mcBox._alpha = 50
}

navigation.portfolio = function(){
    mcBox._alpha = 100
}


//navigationPage(Address);
trace(Address);

var nm = Address.substring(1,Address.length -1);
trace(navigation[nm]);
trace (nm);
navigation[nm]();

// Set the title.
SWFAddress.setTitle('Swivel UK - Modern Classic Furniture');

}

homeButton.onRelease = function():Void
{
SWFAddress.setValue(’/’);
}

aboutButton.onRelease = function():Void
{
SWFAddress.setValue(’/about/’);

}

portfolioButton.onRelease = function():Void
{
SWFAddress.setValue(’/portfolio/’);
}

产品保护,干燥剂帮你忙!