Discover the secrets of the Celts


Web Design - Embedded MIDI Files Don't Have to be Evil

How many times have you read in an onlinecan mean the difference between a two-week
forum or a web design tutorial that embeddedvacation in Cancun and a day trip to the
midi (Musical Instrumental Digital Interface)local water park.The real problems with
files are "bad"? Probably more times thanembedded midi files arise when webmasters do
you care to remember. For the most part,not give their visitors any control over the
embedded sound files of any kind have beensounds emanating from their web pages. Most
categorized as web site "bling-bling", rightpeople become frustrated and annoyed when
along side animated gifs, flashing bannersthey are forced to listen to music that they
and complex frames layouts. Essentially,cannot shut off at leisure. Using the
they just contribute to unnecessary glitz andexample above, I imagine that even John and
clutter that does nothing more than distractJane would be getting pretty annoyed around
visitors and significantly slow page downloadthe 10th time the background music loops as
times.There is historical justification forthey are still trying to decide between the
this stereotype, as many beginning webmastersgranite and the obsidian plaque.The IE
tend to go overboard with the bells andbrowser makes it a bit easier in cases like
whistles on their first web design attempts.this because the toolbar stop button is
This is just part of the learning process andcapable of stopping midi play, along with
should not be judged too harshly.With all thepage download and all other animation, of
bad press that embedded midi files get, somecourse. However, other browsers like Mozilla
of the more accomplished web designers tendFirefox that have to rely on a QuickTime or
to avoid using them. This is unfortunate,other third party plug-ins do not have this
because if implemented and managed properly,luxury. If the site designer does not supply
midi files can add benefit to some types ofa control console of some type, the visitors
web sites, both for the visitors and the webare held prisoner and will likely escape at
site owners. In fact, I'm going to go as farthe first chance they get.There is no voodoo
as to say that an appropriately implementedinvolved with displaying a midi console on a
midi file can actually drive more traffic andweb page. The basic EMBED code is fairly
even increase sales! Sound fishy? Maybe so,standard. You've probably seen or used
but just hear me out.The key to using a midisomething similar to this in the past:< EMBED
file effectively is to help create a desiredSRC="filename.mid" HIDDEN="false"
mood in conjunction with the color scheme,AUTOSTART="true" VOLUME="60" height="25"
graphics, and layout of a given web page.width="200" LOOP="true" >The trick is getting
Let me give you an example.Let's pretend thatthe darn console to display properly across
John and Jane have just lost their preciousall browsers using different plug-ins. The
little Maltese of 12 years to kidney failure.embed statement shown above, for example,
They are surfing the Web, looking for awill not display properly in Firefox or
perfect pet memorial to celebrate the life ofNetscape using the QuickTime plug-in.I have
their dear friend. They have narrowed theirhad decent success implementing midi consoles
search to your site 'A' and a competitor siteusing BGSOUND with the following javascript.
'B'. Site 'B' has a professional lookingI make no guarantees, but I've seen this work
site, reasonable prices, adorable pictures ofin the newer Firefox and Netscape browsers
other pets whose owners have bought from andusing the QuickTime plug-in as well as in IE
recommend them, and detailed descriptions andwith QuickTime or Windows Media
images of the various memorials. It almostPlayer.x="midifilename.mid";
brings a tear to your eye. Almost.Now, your
site 'A' has comparable professionalism,document.write('< NOEMBED >< BGSOUND
prices, emotional design, etc., but inSRC="'+x+'" AUTOSTART=true LOOP=true ><
addition, you've included an embedded midiNOEMBED >< EMBED SRC="'+x+'" WIDTH=200
file that plays a sad little, heart-tugging,HEIGHT=45 AUTOSTART=true LOOP=true > ')Don't
piece of music in the background. Those eyesbe afraid to experiment. If you have an
that were almost ready to tear up at yourexisting web site or are in the process of
competitor's site now start watering fullbuilding one that you think might benefit
tilt as the background music helps themfrom a bit of midi psychology, then track
remember all the wonderful times they haddown an appropriate file and give it a whirl.
with their pup. Who do you think they'reYou may be pleasantly surprised.Bob Davis is
going to buy from? Exactly.The previousa professional database consultant, web
example may be a bit over-dramatized, but thedesigner, graphic artist, and Internet
theory is sound. Sometimes, littlemarketer.
psychological nudges in the right direction



1 A B C 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101