We've sent a verification link by email
Didn't receive the email? Check your Spam folder, it may have been caught by a filter. If you still don't see it, you can resend the verification email.
Started February 8th, 2009 · 1 reply · Latest reply by NewCityVegas 15 years, 9 months ago
I found a distinctive clicking sound that was not too loud but still noticeable to notify the user that a button selection activated a submenu. Examples: baidu and ixQuick buttons.
Rather than fight with different web browsers, mime types, codecs, etc., I decided to convert the 65KB .wav file into a 12KB MP3 file (using Foobar2000 and LAME.exe) and then into a 12KB playerless flash *.swf file (using a demo version of the $20 Segon "Boomer Audio" app).
header javascript code:
function playSub () {
document.write('<OBJECT>'+
'<EMBED src="submenu.swf" id="subE" name="subE" quality=high'+
' bgcolor=#667788 width=20 height=20 type="application/x-shockwave-flash"'+
' menu=false play=false'+
' pluginspace="http://www.macromedia.com/go/getflashplayer">'+
'</EMBED></OBJECT>');
}
// NOTE: no spaces allowed after '+
BODY javascript code (inside function loop):
document.getElementById('subE').Play();
just before </BODY>:
<script type="text/javascript">playSub();</script>