Hi all,
This week i am updating the sdk for the version 4.10 i had problems before but
was i needed to update parsley version.
After that all went fine.
In this moment i get a error in one tree and i just don't know if is related
with the sdk or not.Because i have a tree working and other not.
Even so this error i think we could prevent it:
so in the component tree.as
on the line 1962 we have this code
// figure out how much space was consumed by the rows that are going away
for (i = rowIndex; i < rowIndex + rowsToMove && i < rC; i++)
{ maxDist += rowInfo[i].height; //
retain a reference to the rows going away
rowList.push({item: listItems[i][0]}); tmpMask = makeMask();
tmpMask.x = xx; tmpMask.y =
listItems[rowIndex][0].y; tmpMask.width = ww;
tmpMask.height = maxDist; listItems[i][0].mask =
tmpMask; }
and this line tmpMask.y = listItems[rowIndex][0].y;
don't have the properties we have a rowindex of one but no content for that so
is throwing a error of:Error #1010: A term is undefined and has no properties.
Some ideas?