« Sql lite admin for air | Main | Flex SDK builds »

TrackBack

TrackBack URL for this entry:
http://www.typepad.com/services/trackback/6a00d8347b318169e2010536fac3bf970c

Listed below are links to weblogs that reference Deep Linking with SWF Address and URL format:

Comments

Feed You can follow this conversation by subscribing to the comment feed for this post.

Hey Grant,

For one of my recent previous projects, we added a few methods to SWFAddress to accomplish just this. In a nutshell, we would set a value like you would normally in SWFAddress, but with a new method would allow for the ability to pass in an object of value paris which would be appended to that SWFAddress value as query string parameters.

For example: http://www.somesite.com/somePage.html#/brand/?item=43&id=3/hopup/?item=2&showme=1

SWFAddress.clearParamObj();
SWFAddress.addToParamObj( "brand", { id : 3, type : video } );
SWFAddress.addToParamObj( "hopup", { id : 1, showme : true } );
SWFAddress.applyParamObj();

To get param values:
var values : Object = SWFAddress.getValueAsParamObj();
if( values.brand ) trace( values.brand.id );
if( values.hopup ) trace( values.hopup.showme );

It's in it's early stages but does the job. Here's the updated SWFAddress file we used:

http://www.krisrange.com/samples/SWFAddress/SWFAddress.as

Kris

Thanks, thats a really nice idea, I'm going to check it out as it does simplify a lot of junk

I'm having problems with deep linking with SwfAddress, to link between interior areas. I firefox works well, but in Explorer it's refreshing the all website and then enters the section.
In Firefox it's smooth, just open inside the area.
Sorry about english
Can anyone help?

Do you have an example posted on the internet somewhere, we just did a site using swfaddres = http://www.itsasoftdrink.com and it works great in IE, firefox and safari

Verify your Comment

Previewing your Comment

This is only a preview. Your comment has not yet been posted.

Working...
Your comment could not be posted. Error type:
Your comment has been saved. Comments are moderated and will not appear until approved by the author. Post another comment

The letters and numbers you entered did not match the image. Please try again.

As a final step before posting your comment, enter the letters and numbers you see in the image below. This prevents automated programs from posting comments.

Having trouble reading this image? View an alternate.

Working...

Post a comment

Comments are moderated, and will not appear until the author has approved them.