Getting a runtime error in ContainerController
Using SDK 4.5.0.20967
The error is thrown on line 3182:
while (containerListIndex == -1 && floatIndex > 0)
{
floatIndex--;
floatInfo = _composedFloats[floatIndex - 1];
containerListIndex = _floatsInContainer.indexOf(floatInfo.graphic);
}
floatIndex is 1 when it enters the loop,
then it is decresed to 0,
then null gets assigned to floatInfo - when it is looking for: _composedFloats[-1]
Then it throws an error when it tries to access a property on floatInfo - which is set to null
Here is the error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at flashx.textLayout.container::ContainerController/http://ns.adobe.com/textLayout/internal/2008::updateGraphics()
I am not sure exactly how I am triggering this - I am trying to discern that - but if you have any thoughts - please let me know.
