Alberty Innovations

Archive for August, 2007

Yank the Wires - HP MediaSmart HDTV

Tuesday, August 28th, 2007

The new HP MediaSmart HDTV viral site launched today. It features an interactive environment with some cool viral videos. I think it is great how companies are spending their marketing money on cool sites like this, rather than spending money on tv commercials. Have you found any other cool viral sites that are built around a product? If so, please comment about them.

Asian American Bar Association of Houston (AABA) Web Site Redesign

Monday, August 20th, 2007

The redesign of the AABA website is complete. Check it out and let me know what you think.

Disable the Image Toolbar in IE by Using HTML Tags

Thursday, August 2nd, 2007

As web developer, you may want to turn off image toolbar functions for an individual picture or all pictures on a Web page. This turns off only elements that use the <img> tag; it does not affect other graphics tags, such as <embed> or <object>, or the file type.

If you want to turn off image toolbar functions for individual pictures on a Web page, use the following <img> syntax for the picture:

<img border="0" src="filename" galleryimg="no">
<img border="0" src="filename" galleryimg="false">

If you want to turn off image toolbar functions for all pictures on a Web page, add the following syntax to your Web page:

<meta http-equiv=”imagetoolbar” content=”no”>
<meta http-equiv=”imagetoolbar” content=”false”>

If you turn off Image toolbar functions for all pictures on a Web page, you can enable them for individual pictures by setting the galleryimg attribute to “yes” or “true”, using the following <img> syntax:

<img border="0" src="filename" galleryimg="yes">
<img border="0" src="filename" galleryimg="true">

Note: If you use the galleryimg=”yes” attribute and you also use image mapping (usemap or ismap), the galleryimg=”yes” attribute overrides the mapping attribute, and the menu is turned on.

The only caveat is that this code will not validate as strict xhtml.