I am dynamicly adding xml data into three text fields buy looping and then adding the text_info movieclip to a scroll_box movie clip then adding the scroll_box to the _myCanvas movieClip. I want to mask the data but am not getting the results I though I should.
_myCanvas = getChildByName("myCanvas") as MovieClip;
_myCanvas.height = 369.10;
_myCanvas.width = 596.15;
_myCanvas.x = 114;
_myCanvas.y = 259.05;
var MyClass:Class = ApplicationDomain.currentDomain.getDefinition("MyScrollElement") as Class;
_myScrollElement = new MyClass();
var scroll_box = _myCanvas.addChild(_myScrollElement);
for (i = 0; i < myXML.Row.length(); i++){
var item:text_holder = new text_holder();
scroll_box.addChild(item);
var _data = myXML.Row[i];
//add xml data to text fields
move each textbox to
current_y_right = current_y_right + 131;
item.x = current_x_right;
item.y = current_y_right;
}
var myMask = getChildByName("myMask") as MovieClip;
myMask.height = 369.10;
myMask.width = 596.15;
myMask.x = 114;
myMask.y = 259.05;
_myCanvas.mask = myMask;
But the text that is being displayed still shows outside the mask area. Any help would be great.