Hi and thanks for all the help here... Very appreciated!!!


I while ago i posted a thread about align movieclips. I my movie i've got this movie clip called "copy" where all the copyright text is shown. The movieclip is always in the right bottom corner. I want my other movieclip, called "main", to always be centered and my third, called "logo" to be in the left upper corner. This must be possible, but how?

I use this script to get my mc copy in the right corner:
Code:
Stage.scaleMode = 'noScale';
Stage.align = 'TL';

myListener = new Object();
myListener.onResize = function(){
 sw = Stage.width;
 sh = Stage.height;
 copy._x = sw - 0;
 copy._y = sh - 0;
}

Stage.addListener(myListener);
myListener.onResize();
Thanks in advance