I have TabNavigator container and want to add multiple number of tabs.
When I do:
tabNavigator.addChild(canvas) it jums into Binding.as
----------
             // Certain errors are normal when executing a srcFunc or
destFunc,
             // so we swallow them:
             //   Error #1006: Call attempted on an object that is not a
function.
             //   Error #1009: null has no properties.
             //   Error #1010: undefined has no properties.
             //   Error #1055: - has no properties.
             //   Error #1069: Property - not found on - and there is no
default value
             // We allow any other errors to be thrown.
>Here>            if ((error.errorID != 1006) &&
                 (error.errorID != 1009) &&
                 (error.errorID != 1010) &&
                 (error.errorID != 1055) &&
                 (error.errorID != 1069))
             {
                 throw error;
             }
------------
and after that stops execution. No exception.

What is going on here?

Reply via email to