04-30-2010, 07:30 PM | #1 | |
Niqo Niqo Nii~
Join Date: Mar 2004
Posts: 6,240
|
HTML, Java, CSS help needed
I'm trying to create a soundboard like so and am trying to do it without flash.
I'm hitting a wall with the JavaScript. You can see by the code below that I've gotten some test images to preform rollover effects just fine; HTML Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <LINK href="stylesheet.css" rel="stylesheet" type="text/css"> <title>My Webpage</title> </head> <body> <center> <table border="1"> <tr> <td> <a href="#" class="rollover1" title="Sound"><span class="displace">Sound</span></a> <td> <a href="#" class="rollover2" title="Sound"><span class="displace">Sound</span></a> </td> </tr> <tr> <td> <a href="#" class="rollover2" title="Sound"><span class="displace">Sound</span></a> </td> <td> <a href="#" class="rollover1" title="Sound"><span class="displace">Sound</span></a> </td> </tr> </table> </center> </body> </html> Code:
/* stylesheet.css - a simple style sheet */ a.rollover1 { display: block; width: 100px; height:100px; text-decoration: none; background: url("test-button.png"); } a.rollover1:active { background-position: -100px 0; } a.rollover2 { display: block; width: 100px; height:100px; text-decoration: none; background: url("test-button2.png"); } a.rollover2:active { background-position: -100px 0; } .displace { position: absolute; left: -5000px; } JavaScript Code:
<script> function EvalSound(soundobj) { var thissound= eval("document."+soundobj); thissound.Play(); } </script> <embed src="sound.wav" autostart=false width=0 height=0 name="sound1" enablejavascript="true"> <a href="#" onClick="EvalSound('sound1')">Click here to play sound</A> Help/ examples would be much appreciated. EDIT: Edited per Fifthfiend's advice. Will post with results after my next attempt.
__________________
Quote:
Last edited by Nique; 04-30-2010 at 08:31 PM. |
|
04-30-2010, 08:26 PM | #2 |
for all seasons
|
I think you want sound.wav, not sound, in your onClick action.
EDIT No wait sorry I think you want sound1, it's supposed to match the name from your embed.
__________________
check out my buttspresso
Last edited by Fifthfiend; 04-30-2010 at 08:30 PM. |
04-30-2010, 08:37 PM | #3 | |
Niqo Niqo Nii~
Join Date: Mar 2004
Posts: 6,240
|
Hm. It is arranged like so...
Code:
<head> <LINK href="stylesheet.css" rel="stylesheet" type="text/css"> <title>My Webpage</title> </head> <body> <script> function EvalSound(soundobj) { var thissound= eval("document."+soundobj); thissound.Play(); } </script> <embed src="sound.wav" autostart=false width=0 height=0 name="sound1" enablejavascript="true"> <a href="#" onClick="EvalSound('sound1')">Click here to play sound</a> ... And yes my filepath is correct and yes I am actually using a file named 'sound.wav' that makes for reals noise. I'm using IE7 if that helps.
__________________
Quote:
|
|
04-30-2010, 09:03 PM | #4 |
for all seasons
|
Huh. It apparently works fine in Firefox / IE8 / Chrome so IDK. Does that link work for you?
EDIT: Does this? Maybe the problem isn't the javascript so much as whatever plugin you have/don't have installed?
__________________
check out my buttspresso
Last edited by Fifthfiend; 04-30-2010 at 09:45 PM. |
04-30-2010, 09:58 PM | #5 | |
Niqo Niqo Nii~
Join Date: Mar 2004
Posts: 6,240
|
FFFFFFFFFFFFFFFFFuuuu...
Yeah that'd be it but I am checking it on another computer. Unfortunatly the fact that the OTHER computer doesn't have the right plugin means that all the computers that will be using it don't have it either.
__________________
Quote:
|
|
04-30-2010, 10:02 PM | #6 |
for all seasons
|
Do you have quicktime installed? That's what mine uses to play 'em.
But yeah if this is some sort of serious project or w/ev you probably shouldn't count on people having whatever dumb plugin. Which I guess is why every media site uses Flash, it's the dumb plugin that everybody has!
__________________
check out my buttspresso
Last edited by Fifthfiend; 04-30-2010 at 10:06 PM. |
04-30-2010, 10:08 PM | #7 | |
Niqo Niqo Nii~
Join Date: Mar 2004
Posts: 6,240
|
Yeah and basically any way to make this work that I have researched needs the plugin to play it right off the page... or else there is some insane magic way to do it in CSS.
Thanks for the help though! At least now I can stop wasting my time with USELESS JAVASCRIPT! GAH!
__________________
Quote:
|
|
04-30-2010, 10:16 PM | #8 |
for all seasons
|
I guess if you wanna stick to doing it in java/html could figure out how to set it up to detect whether people have X plugin and if they don't be like "HEY YOU DON'T HAVE X PLUGIN YOU GOTTA GO GET DAT OR THIS SITE WON'T DO SHIT"
__________________
check out my buttspresso
|
05-01-2010, 12:01 AM | #9 | |
Niqo Niqo Nii~
Join Date: Mar 2004
Posts: 6,240
|
Here's a sort of weird thing. Off your site, it works. But if I try to play it locally out of just 'My Documents' or whatever, it brings up the Active-X error and then won't play at all. Could it have to do with the file types I'm using? It's just a .wav I found from the OS so it should be a thang...
__________________
Quote:
|
|
05-01-2010, 03:33 AM | #10 | |
for all seasons
|
Quote:
EDIT "My Documents" so lol, yeah. I bet that's what's fucking it up.
__________________
check out my buttspresso
|
|
Thread Tools | |
Display Modes | |
|
|