I finally did it ! There's the code if somebody needs it sometime
Code:
Stage.scaleMode = "noScale";
Stage.align = "TL";
import com.mosesSupposes.fuse.*;
ZigoEngine.simpleSetup(Shortcuts, PennerEasing, Fuse, FuseFMP);
attachMovie("fullScreen","fullScreen",this.getNextHighestDepth());
fullScreen._x = 0;
fullScreen._y = Math.floor(Stage.height-Stage.height/10);
fullScreen._xscale = fullScreen._yscale
fullScreen._width = Stage.width/16;
fullScreen._height = Stage.height/10;
var myListener:Object = new Object();
myListener.onResize = function() {
ZigoEngine.doTween(fullScreen,"_x,_y",[0, Math.floor(Stage.height-Stage.height/10)],2,"easeOutExpo",0.5);
ZigoEngine.doTween(fullScreen, "_xscale,_yscale",[Math.floor(Stage.height/2.4)],2,"easeOutExpo",0.5);
};
Stage.addListener(myListener);
Bookmarks