deep-linking

How does Google read SWFAddress deep paths?

SWFAddress claims that it is search-engine friendly, but how is one supposed to feed the deep-links into search engines like Google? Because in all my SWFAddress-powered websites, not a single deep-link shows up in Google. Tried and failed methods: In the hidden-HTML, a-href (hyperlink) to deep-links such as www.site.com/#/Topic1 In t...

FLEX: Programmatically remove Alert?

I need to programmatically remove an alert. This is why: My application uses BrowserManager to enable deep linking based off of the content in the #hash part of the url. If an alert is currently up, and the user hits the back button, the application will revert back to its previous state. But the Alert will still be up, and in many case...

Can I update window.location.hash without having the web page scroll?

Using JavaScript, is there a way to update window.location.hash without scrolling the web page? I have clickable title elements that toggle the visibility of a div directly beneath them. I want the /foo#bar in the history when clicking titles but don't want the page scrolling about. So when navigating away from /foo#bar I'll be able to ...

Flex Deep Linking, and Named Anchor Links

OK deep-linking in flex uses the anchor(#) text in the URL. So a link to a named anchor on the same page would override the anchor text used by Flex and reset the application. Does anyone know of a way they can coincide? Thanks. ...

Deep linking in JavaFX

Silverlight supports deep linking in the latest version. Does JavaFX? ...

Ajax deep linking?

I have made a flex app deep link before but now I want to make an ajax app deep link. I have no idea where to start. I assume I need a way to listen for when the #hash in the url changes and be able to read it. And I assume I need a way to update the #hash in the url. Does anyone know how to do all that? Thanks! ...

Frame Region Adapter and RegionContext in Silverlight 3/PRISM

Hi I'm trying to use the new Silverlight 3 deep linking feature to try to drive a PRISM based application "from the outside", i.e, by using the browser url. The url would be used as a hint to know which PRISM module to load. So, I have a region hosted inside a SL3 Frame which is adapted by a custom region adapter I built. All the views...

Django & Nginx deeplinking domains (re-write rules or django urls?)

I'm running Django behind Nginx (as FASTCGI) and I need to "deeplink" to a page in one domain from the root of another without redirecting or forwarding e.g. Given that I have a domain general-stuff.com and a matching URL http://general-stuff.com/books/ and that I have a second domain books-stuff.com I need a way to get the page served ...

What is the best seo solution for deep linking a flex app/site?

There are several quality solutions for deep linking a flex application or site. For seo purposes which one produces the best indexing results? Asual's SWFAddress, Adobe's BrowserManager or urlKit. All three of which seem viable and easy to implement. Update This guy at unitedmindset seems to have pulled it off using the BrowserManage...

Deeplinking with SWFAddress and Facebook connect

After prompting the user for the login and submitting it's details, my application appears in the facebook lightbox instead of the browser window. This is not the case when I remove the SWFAddress params (all the info after the hash in the URL bar). Is it possible to tell the API to ignore the info after the hash or is there a way i can ...

swfaddress - multiple levels

there is a basic example of deeplinking in flash that comes with swfaddress; it uses the solution of checking the url with a switch() statement and does something based on that case string. what is the best way to go about linking into multiple levels? i.e. ...url.com#/clients ...url.com#/projects ...url.com#/contact these are simp...

Flash Deep-Linking Causing Page Refresh in Web-Kit

Hello- I am working on a project where my team's Flash application is being displayed in another team's Web-Kit browser. We are experiencing a bug when a Flash Accordions selected index is changed; the web-page itself refreshes. Since this is a map-based application, this is unacceptable since the users Area of Interest is lost. From...

Silverlight 3 & Deeplinking

I have a requirement to implement some deep linking into a Silverlight application and thought the new navigation framework in Silverlight 3 would be ideal. However after doing some digging about it uses Uri's to 'swap' one piece of xaml for another using the Frame control. What I'd like to do, is use the deep link to select it's rel...

jQuery - Getting deep linking jQuery Address to work

I am really wanting to use the jQuery address plugin for deep linking my ajax website, but honestly, I have having a hard time understanding how to set it up. Even the examples seem to not be clear. Does anyone have a simple example on how to get this working? ...

AS3 - swfaddress deep linking when someone pastes a url

I have swfaddress (2.4) working fine on my site - the back button works, I can copy and paste urls and be taken to the correct page, etc. BUT, if I copy a url, say "http://mysite.com/#/bio", and paste it into a new browser window, the site always just loads to the home page after the preloader. What am I missing? Do I somehow need to ch...

jQuery Address Plugin - Not allowing loading ajax?

I am trying to test the jQuery Address Plugin and it seems to not allow ajax to work in the change function. I am using: $.address.change(function(event) { $('#content').load(event.value+' #content'); $.address.title(event.value); }); $('a').click(function() { $.address.value($(this).attr('href')); }); While I can use ev...

jQuery deep linking plugins (#hash navigation)

So far I've found Address (port of SWFaddress?) and BBQ. Which other plugins that provide this functionality exist, and which is better/standard? So far I've only built my own hackish #-reading scripts, but need something that can handle multiple variables, i.e. #user=bob&sortBy=rating. Any suggestions or opinions are welcome. Thanks!...

jquery deep linking - how does it effect analytics?

Hello, I am looking into using http://www.asual.com/jquery/address/ , but I am wondering how it effects google analytics. Google analytics is a snippet of code at the bottom of pages. I would imagine deep linking would still look like activity on the initial page, not new pages. ...

jquery address how do you use it?

im trying to understand how to use the jquery address plugin for handling deep linking with ajax. but the documentation is very poor and i cant find any good tutorials explaining what is going on. i think a good documentation with good examples is important with every plugin. could someone explain or give some useful links for explana...

Is there any way to handle silverlight deep linking without '#' showing in the url?

I want to have two separate interfaces to my website, one that is silverlight, and one that is normal html for people who don't have Silverlight, and for search engines. They would have exactly the same content, the Silverlight one would just be a richer experience. If someone with Silverlight copies the URL to a certain page, it will ...