I have some annoying problem with java applet.
Basically I made java applet that works fine. After finishing it, i wanted to embed it in html file and that is where my problem began.
When i compiled applet i saw 7 more .class files besides my basic .class file (Game$1.class,Game$2.class,Game$3.class,...,Game$7.class,Game.class)
I tried to ignore the rest of .class files and to embed just Game.class into html but it didn't work. When I tried to run applet it just showed just blank html page.
I tried same html code with simple "Hello world" applet and it worked so I assume that html file is correct
My html file is located in bin folder just as whole java package.
Can anyone help me with this problem?