Top VPS Hosting Provider

Welcome to the myhosting.com Forums.
+ Reply to Thread
Results 1 to 9 of 9

Thread: Flash indexing

  1. #1
    KristinBeauty is offline Junior Member
    Join Date
    Apr 2010
    Posts
    3

    Default Flash indexing

    Is there a way to index flash graphics so that search engines can detect them?

  2. #2
    melissas is offline Master Member
    Join Date
    Sep 2009
    Posts
    138

    Default

    nawt that I know of...

    but hey - HTML5 is where its AT, lol

  3. #3
    JealousJulie is offline Junior Member
    Join Date
    Apr 2010
    Posts
    2

    Default billion $

    Billion dollar technology you're talking about there!

  4. #4
    rockinrosco is offline Junior Member
    Join Date
    Apr 2010
    Posts
    3

    Default that is a good question though

    since some people don't know that and aren't even getting their site content ranked because of it!

  5. #5
    melissas is offline Master Member
    Join Date
    Sep 2009
    Posts
    138

    Default

    hahaha agreed. a lot of flash developers I know are hating Apple's decision to exclude flash.

  6. #6
    sarumbear is offline Junior Member
    Join Date
    Apr 2010
    Posts
    2

    Default

    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

  7. #7
    gavdaly is offline Junior Member
    Join Date
    Apr 2010
    Posts
    1

    Default

    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.

  8. #8
    sarumbear is offline Junior Member
    Join Date
    Apr 2010
    Posts
    2

    Default

    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.

  9. #9
    Talk2Me is offline Junior Member
    Join Date
    Mar 2010
    Posts
    3

    Default

    Holy thorough batman...thanks!


 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts