Sound effect on rollover or click

  • Thread starter Thread starter SPR
  • Start date Start date
S

SPR

Good Morning,

I am running FP2000 (soon to upgrade).

Can anyone advise me how to set up my web page so when I
run my cursor over a hyperlink, or alternatively click a
link, it plays a subtle sound effect of my choosing?

While on the same topic, what sound effect file tpes are
best suited for this job? Presumably a compact file type?

Cheers
 
-----Original Message-----
Good Morning,
Howdy.

I am running FP2000 (soon to upgrade).

Can anyone advise me how to set up my web page so when I
run my cursor over a hyperlink, or alternatively click a
link, it plays a subtle sound effect of my choosing?

Code one of these attributes inside the <a> tag:

onMouseOver="document.all.music.src='gong.au';"
onClick="document.all.music.src='gong.au';"
While on the same topic, what sound effect file tpes are
best suited for this job? Presumably a compact file type?

The most widely-supported formats are .au and .mid. And
right, despite the season, I wouldn't recommend using
that MP3 file of Tchaikovsky's Nutcracker Suite.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
|| Microsoft FrontPage Version 2002 Inside Out
|| Web Database Development Step by Step .NET Edition
|| Troubleshooting Microsoft FrontPage 2002
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
SPR said:
Good Morning,

I am running FP2000 (soon to upgrade).

Can anyone advise me how to set up my web page so when I
run my cursor over a hyperlink, or alternatively click a
link, it plays a subtle sound effect of my choosing?

While on the same topic, what sound effect file tpes are
best suited for this job? Presumably a compact file type?

Cheers

Yes, something short and sharp - maybe a 'blip" or "bleep" type sound - and you'd
need to preload them, so the site doesn't have to access the file from the
(remote) server everytime it is requested on the mousedown or mouseover action.
With it preloaded, it is in memory, and much faster.
 
Thanks guys for the replys. Forgive my ignorance, but how
would one go about preloading them?

Cheers
-----Original Message-----



Yes, something short and sharp - maybe a 'blip"
or "bleep" type sound - and you'd
 
Back
Top