hi ,
it seems u didntget my question while downloading the image the following procedure is normally employed
Image img = getImage(getCodeBase(),"image/name.gif" )
MediaTracker md = new MediaTracker(this);
md.add(img,1);
try
{
md.waitFor(1) ;
}
catch (Exception e)
{
}
so now the Question is if i am putting it in the Jar format wat will be my code and how am i going to refer to the image file name .gif in the getImage method