Hello, I have several Gif files in my game, others load perfectly fine but this one won't
.
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
public class Television extends Actor
{
GifImage myGif = new GifImage("Jump2.gif");
public void act()
{
setImage( myGif.getCurrentImage() );
}
}
