Hi.
Probably not the main issue but this line were chocolate length every time
through the list
> for each ( var item:SmartAgentVO in value.Children )
It usually faster to use the more verbose:
var length:int = value.children.length
for (var i:int =0; i < length; i++)
My guess would be this line slows things down:
assetComp.setStyle("textIndent",7);
But it better to run it through the profiler to see what is actually happening
as it's often where you don’t expect.
Thanks,
Justin
