QuantumDoja
Programmer
Hi, I have a mc that attaches another movieclip to it, the attached movie clip has a label component on it, how do i access the text of the label from the start mc?
my code so far
my code so far
Code:
var mc:MovieClip = this.attachMovie("mcTest", "mc", this.getNextHighestDepth());
mc._x = 100;
mc._y = 200;
trace(mc.lblStockCode.text);