Hey, I'm hoping someone can help me fix this very simple problem. I'm new to processing and was just trying to ake a short video play on a loop. I have everything loaded into the libraries properly but for some reason the line image(myMovie, 0, 0); comes up as "error coordinate out of bounds!". I don't entirely understand what this means, I tried moving around the size and coordinate location but I don't seem to be having any luck. If anyone has any suggestions please let me know :)!
Hey I'm new at processing and trying some examples from the book. For some reason this on keeps giving a null pointerexception error. I'm sure it's something very easy to fix I just can't figure it out. Hope someone can help me, Here's the code!
int maxImages = 2; int imageIndex = 0; PImage [] images = new PImage [maxImages];
void setup () { size(200, 200); for (int i = 0; i < images. length; i++) { images [i] = loadImage ("Ball 1" + i + ".jpg"); } }