Problem in loading applet from non executable jar file

hello ,

I am new to jar concept plz help.. I am trying to call an applet from another applet through frame it is working fine but its download time is much more. now i want to store all my images , sound files and class files of other applets in a jar file and want to access these inner applets from this jar file so that it will make only one http connection with the server for this jar file only and can reduce the download time of applet.

Can anyone can give me suggestion plz..

Thanx

[514 byte] By [1softsolutionsa] at [2007-11-15]
# 1
You have to download what you have to download. You probably can't easily share images between 2 separate Jar files. Unless you can expose them through the other applet via a method that can be known once you have the reference to the other applet.
bsampieria at 2007-7-12 > top of java,Java Essentials,New To Java...
# 2

> You have to download what you have to download. You

> probably can't easily share images between 2 separate

> Jar files. Unless you can expose them through the

> other applet via a method that can be known once you

> have the reference to the other applet.

Thanx but i think i have to elaborate the problem :

my project structure is just like this ::

on the top is ::

Applet A> from this applet i am callling Applet B & Applet C in frame

and communication is established between these 3 applets successfully .

now i have made a single non executable jar file which contains images , sound and class files of these applets .

so i am referencing images and sound files in applets through this jar.

but i wanted to load Applet B & C through this jar file only.

How can i do this ?

Thanx .. I hope now the problem is clear

1softsolutionsa at 2007-7-12 > top of java,Java Essentials,New To Java...