Is there a way to index flash graphics so that search engines can detect them?
Is there a way to index flash graphics so that search engines can detect them?
nawt that I know of...
but hey - HTML5 is where its AT, lol
Billion dollar technology you're talking about there!
since some people don't know that and aren't even getting their site content ranked because of it!
hahaha agreed. a lot of flash developers I know are hating Apple's decision to exclude flash.
Wrong!
Google does index Flash and had been doing for quite some time.
Here is the info from Google:
Official Google Webmaster Central Blog: Improved Flash indexing
Flash indexing with external resource loading
Sarumbear
Bots don't read javascript so, have your flash site wrapped in a div, then redo all of the content on the flash site in standard html and wrap that in a div.
The javascript below will detect if you have a flash player if you do, you get the flash version. If you don't you get the html version. This also solves the problem with iphones, really old browsers and people who don't want flash installed.
I wrapped it all in jQuery so you can make the non flash site look just as good. The only problem with this is if some one has javascript turned off gets both versions. Oh well, think SEO is more important then people scared of javascript.
Code:<head> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script> <script language="javascript" type="text/javascript"> $(document).ready(function() { if ((navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf("Mac") == -1 && navigator.appVersion.indexOf("3.1") == -1) || (navigator.plugins && navigator.plugins["Shockwave Flash"]) || navigator.plugins["Shockwave Flash 2.0"]){ $("#contentWrapper").hide(); } else { $("#flashWrapper").hide(); } }); </SCRIPT> <title>Searchable flash site</title> </head> <body> <div id="flashWrapper"></div> <div id="contentWrapper"></div> </body> </html>
Last edited by gavdaly; 2010-04-23 at 03:43 PM.
I posted a reply a few hours ago, the system said it needs to be moderated, but even though a new message appeared since then my message is stil not visible. How come?
Edit: Strangely this message is posted directly without waiting for moderation. System is deffo shakey, needs tender care, me thinks.
Anyway, Google does index Flash data. Read below:
http://googlewebmastercentral.blogsp...-resource.html
http://googlewebmastercentral.blogsp...-indexing.html
Last edited by sarumbear; 2010-04-23 at 05:48 PM.
Holy thorough batman...thanks!