Java applet

I use at my intro this code

<applet code="AudioPlay.class" id="Audio1" width="1" height="1">
    <param name="image" value="images/play.gif">
    <param name="audio" value="drakopoulos_small_20.wav">
  </applet>

So I want to set this code at the pages of some subfolders
When I use this does not work

<applet code="../AudioPlay.class" id="Audio1" width="1" height="1">

I can use the java file that is a folder up of the folder?
Or how I can use it?

I don’t know much about applets but I think you need to use [B]codebase[/B] and not code when it’s in another directory.

As I see codebase needs a url,I tried to set a relative path and it did not worked.
I did it wrong?
Also I set the code at sound.inc and I wrote <!–#include file=“…/sound.inc” –> at the html file but it did not worked.
How can I include other files at a static html file?

Try it as shown in the link I gave you with an absolute reference to the correct file in the codebase attribute and then make sure the .class file is in the same directory as the codebase url points to and it should find it.

Also I set the code at sound.inc and I wrote <!–#include file=“…/sound.inc” –> at the html file but it did not worked.
How can I include other files at a static html file?

Assuming your server is set up for SSI (Server side includes) then you would need again to make sure that the path to the file is correct. I’ve no idea what type of file sound.inc is but follow the examples in the above link.