html: link sound effects and final fantasy cursor
|
hey! how can i add sound effects to links when hovering. and also can you give me a final fantasy hand cursor? ty^_^
_____________________________________________________________
The Goddess of Cresent Blue Moon whisper in our dreams saying: " SEEK us... FIND us... KNOW us... and walk in the PATH between the silence of the two worlds" [SEE YOU IN THE NEXT WORLD!] |
Re: html: link sound effects and final fantasy cursor
Link |
by
on 2006-11-14 20:55:21 (edited 2006-11-14 21:04:29)
|
good crackers, why would you want to do such a thing? what you ask for is unthinkably poor Internet etiquette! I guess you could do this: <script type="text/javascript"> function playSound(tagId) { var sound = document.getElementById(tagId); try { sound.Stop(); sound.Rewind(); } catch (e) { } try { sound.DoPlay(); } catch (e) { sound.Play(); } } </script> <embed src="sound file URL" width="0" height="0" autostart="false" id="unique ID" enablejavascript="true" /> <a href="link destination" onmouseover="playSound('unique ID');">Click here if you DARE!</a>Click here if you DARE! overriding the mouse cursor is something you can only do in flash player, i believe. however, you can have an image follow the mouse. if you want example code for that, too, i think i can dig some up. |
Re: html: link sound effects and final fantasy cursor
|
tnx^_^ i just want to create a page w/ a final fantasy layout just for fun. its like a menu in the ff games. thats why im looking for a ff mouse cursor. do you have one? will the sound slow the loading? >>>>hey, what is that creature that your are punching? you seem to be very angry! ^_^V i'll ask more exmple next time. tnx
_____________________________________________________________
The Goddess of Cresent Blue Moon whisper in our dreams saying: " SEEK us... FIND us... KNOW us... and walk in the PATH between the silence of the two worlds" [SEE YOU IN THE NEXT WORLD!] |
Re: html: link sound effects and final fantasy cursor
Link |
by
on 2006-11-14 21:06:00
|
sound files will slow loading, yes. but, if they are small, it should not be noticeable on fast connections. look at the filesize of the files and compare it to a JPEG image, if you aren't sure. see the edit of my last post for info about cursors. |