D
Dave \Crash\ Dummy
I didn't feel like messing with the system files to customize my startup
sound, so I came up with an alternate solution. It turned out to be
pretty simple. I just created the HTA file shown below, then put a
shortcut to it in my Startup folder.
'=============StartSound.hta===================
<html>
<body>
<bgsound src="c:\windows\media\close022.wav">
</body>
<script type="text/vbs">
'Size and position to make page "invisible"
window.resizeTo 0,0
window.moveTo 0,-32
'Close page after startup sound plays
tt=setTimeout("parent.close",4000)
</script>
</html>
'==============================================
sound, so I came up with an alternate solution. It turned out to be
pretty simple. I just created the HTA file shown below, then put a
shortcut to it in my Startup folder.
'=============StartSound.hta===================
<html>
<body>
<bgsound src="c:\windows\media\close022.wav">
</body>
<script type="text/vbs">
'Size and position to make page "invisible"
window.resizeTo 0,0
window.moveTo 0,-32
'Close page after startup sound plays
tt=setTimeout("parent.close",4000)
</script>
</html>
'==============================================