Simple example of what I'm trying to do in another project.
float x = 0;
PImage img;
void setup()
{
img = loadImage("bigOlMeanie.png");
background(255);
size(600, 600);
}
void draw()
{
background(255);
image(img, 0, 0, width, height);
ellipse(x,height / 2, 10, 10);
if(x < width / 2)
x += 2;
}
If the image snippets are left out, the applet works fine in the browser. With the image snippets, however, the applet just shows up blank. I tried signing the jars (correctly, hopefully) and putting the actual image files in the applet folder but to no avail.