Hi,
is it possible to integrate a, for example avi or move film into greenfoot.
This movie should be an introduction, like the intro of BF3 with "DICE" and "EA".
If it is possible, how can I do this.


public class video extends Actor { int frame2 = 0; int frame3 = 0; int frame = 0; int frameH = 9; int frame2H = 100; int time = 0; String name ="video ("; String brak = ")"; boolean stop = false; /** * Act - do whatever the video wants to do. This method is called whenever * the 'Act' or 'Run' button gets pressed in the environment. */ public void act() { if(!stop) try { frame ++; setImage(name+frame+brak+".jpg"); } catch (java.lang.IllegalArgumentException iae) { stop = true; } else { Greenfoot.stop(); } if(Greenfoot.isKeyDown("space")) { if(!stop) stop = true; else stop=false; } getImage().scale(1920,1080); } }