Movie Position On Stage Controller
Position your Movieclip on stage easily just by calling a single function. Movieclip(s) will re-position itself with the assigned position with easing on stage/browser resize. Easy to implement into your project.
Updated! Now available in Actionscript 3.0
AS2 code example:registerMc = [movieclipA,movieclipB]; positionMcOnStage(movieclipA,"TC"); //position myMovieclip to the top-center of your stage. positionMcOnStage(movieclipB,"BL");AS3 code example:
//initialize the controllers
var myMcController:Controller = new Controller(myMovieclip);
//tween movieclip!
myMcController.positionMcOnStage("C");


36comments