Australian Made and Owned

XHTML and HTML5 Compliant Flash - Stop Using Embed and Invalid XHTML/HTML5

Posted February 24, 2010

When I moved across to XHTML a few years ago, the transition was mostly quite easy. Using thesse logical rules got me though 90% of the transition:

  1. Close all tags, use lower-case tags, use lower-case attributes and maintain nesting order.
  2. Markup is for content, CSS is for presentation. That one was easy.
  3. Use the right tag for the right job (in the right place) and make things accessible.

However, one thing that can’t be covered by a general rule is the complete removal of tags. Most removed tags were non-standard and started out as proprietary - like <marquee> and the tag we’re going to talk about, <embed>. (more…)

Filed under: Web Design — Tags: , , , , , , , , , , — Tim @ 5:49 pm

Removing MovieClip Children from MovieClip in Flash Using ActionScript

Posted January 19, 2008

The Problem

While working on an update for Once Upon a Bride’s handmade jewellery website, I had to overcome a certain bug or problem in Internet Explorer that caused images loaded into Loader Components to render incorrectly and scale incorrectly, usually with incorrect width and height. This was occurring after loading about 12 - 15 images.

So instead of loading them all at once, I made it load only eight images, and let the users view a page of eight at a time. The only problem I had was clearing the old thumbnails before loading the new ones. (more…)

Accessible, Valid Dropdown Menu or Popup Menu using CSS and Semantic HTML

Posted December 28, 2007

CSS and HTML Only Menu - Using Suckerfish SolutionWe’ve all seen dropdown / popup menu lists on websites before, and generally they’re extremely useful because they save space, but offer extra functionality. Sometimes, though they’re tricky to implement. I remember doing a image-only popout menu for the Lonsdale Views, who offer accommodation in Point Lonsdale and it was more difficult than expected - First, there was Internet Explorer’s lack of support for “:hover” and then there was Internet Explorer’s z-index issue. Now that I’ve got a blog, I thought I’d publish a how-to guide for valid, accessible semantic HTML and CSS dropdown menus… (more…)