Google Maps is one of the most widely used online direction services on the web. That being said, have you checked your company’s listing on Google maps recently. In Google Maps’ Local Business Center you can manage your company’s address, services, image and much more. It also boosted my company’s site up on the local listings. It did take 2 weeks to verify the changes but it was definitely worth it.

So while wandering around the Print OnDemand Expo in Boston I bumped into a small Google booth. So in conversation I was told that Google will be releasing a desktop version of Google Documents and Spreadsheets. Furthermore, they said you can expect to see a new link showing up on your Gmail page…
I was told it will be something similar to Microsoft’s Sharepoint. Where was this information 6 months ago when my company chose Basecamp over Google Apps. Although, i do love my Basecamp.
In other news from OnDemand 08, some cool stuff is going on in the world of variable data publishing. Lots of cool web-to-print apps as well as InDesign plugins. Its also cool to see an array of PURL solutions on the market, however I am still not impressed. Every solution I’ve seen is limited in one way or another; bad reporting, limited functionality, no security, etc.
However, overall it was a good time.
Can search engines read flash? A lot of people think that because flash is a program running on a website, it cannot be read by search engines. This is true to some extant however that does not mean there aren’t methods to make your flash movies Search Engine friendly. In fact Google CAN index your flash movies. In “Google Can Now Index . . . Flash!An Interview with Michael Marshall by Robin Nobles” (here), they discuss how Google indexes your flash movie and different things the author can do to help the process.
There are also other methods you can use if you want to be sure all search engines are indexing your flash movie. I use SWFobject. Here’s a brief explanation of how it can be used with some examples.
So first thing you need to do is upload swfobject.js to your website and link it in your header somewhere:
<script type="text/javascript" src="swfobject.js"></script> |
Then you need to create a div tag with all the default contents of the flash movie. What your going to do is over right all of the data inside of that div tag when you load your flash movie.
<div id="flashcontent">
This is what the search engines will read
</div>
<script type="text/javascript">
// <![CDATA[
var so = new SWFObject("mymovie.swf", "sotester", "600", "400", "9", "#FFFFFF");
so.write("flashcontent");
// ]]>
</script> |
View Live Tutorial
And your done! So here’s the result:

And here’s what you see if you don’t have javascript or Flash Player:

And here’s what the search engines see:

Not too shabby.
The cool thing about all of this is the code is valid HTML and XHTML 1.0. There are also a bunch of other cool features with swfobject so explore their website and have some fun.
Now there has been some discussion on whether or not the content in the div tag that is being overwritten might be looked at as spam by Google at some point. So far it hasn’t been a problem and as long as developers don’t abuse this we should be good well into the future.
So go off and have fun with flash. Make many websites and flash intros to your hearts content (if your into that sorta thing). The future of flash looks brighter every day.