Mc position inside a scaled movieClip
I have a mc on stage. I want to add a new mc inside it and position it at the bottom of the mc.
The code works fine when the container mc is 100% scaled, but when I scale it, the mc inside positions wrongly.
Heres my code:
PHP Code:
// Lage scroller:
var o0LbScroll:Object = getChildByName("o0LbScroll");
o0LbScroll.oppKnapp = new scrollKnapp;
o0LbScroll.nedKnapp = new scrollKnapp;
o0LbScroll.addChild(o0LbScroll.oppKnapp);
o0LbScroll.addChild(o0LbScroll.nedKnapp);
o0LbScroll.nedKnapp.y = o0LbScroll.height;
Any help is appreciated.