Index: [thread] [date] [subject] [author]
  From: Jason Grosland <jcg3@cs.duke.edu>
  To  : 
  Date: Wed, 14 Apr 1999 22:16:55 -0400

Re: Images in netscape

On Wed, 14 Apr 1999, Nisha Kapur wrote:

> For some reason my images don't show up in netscape, they show up when I
> view my applet in the appletviewer and when I run it as an application,
> but I get just balls in netscape :(

How are you referring to the files?  You should define them as absolute
urls if possible:  http://www.duke.edu/~jcg3/images/foo.gif

Otherwise, in your applet definition (in html), you should define your
codebase:

<applet code="foo.class"
	name="Bar"
	codebase="http://www.duke.edu/~jcg3/java"
	width=200
	height=200>

Appletviewer probably makes some assumptions about relative codebases that
netscape isn't.

...jason

  { jcg3@cs.duke.edu * www.duke.edu/~jcg3 * 919.613.1354 * 108 House P }



Index: [thread] [date] [subject] [author]