In my program,I have one button on stage
when I click to that button , a popup will appear .
Actually that popup is a movieclip.
I want one text box over it and one close button on it.
For which I create one mc in library and class linked to it is close1.
similarly I create one textbox i.e. dynamic textbox.
I put close button and text box on that popup.
Now when I rotate or scale the popup,text will disappear
I use rotatableScalable class over popup.
dess = new txt(); // Dynamictext box
popup = new mypopmc; //p[opup
closemc= new close1();// close button
addChild(popup);
popup.x= 300;
popup.y= 50;
popup.addChild(dess) // text box
popup.addChild(closemc);
closemc.x= 150;
Now what is reason of this problem.
How to solve it??
Thanks