flash MC Placement?
flash MC Placement?
Out of context: Reply #7
- Started
- Last post
- 16 Responses
- dijitaq0
make a function
var placeMC = function (targetMC:MovieClip){
targetMC._ y = Stage._height - targetMC._ height;
}call the function on stage resize
var myListener = new Object();
myListener.onResize = function()
{
placeMC (targetMC);
}
Stage .addListener(myListener);