Something in the child you are adding is likely attempting to access data that is not yet available.
Start by adding something simple, like a plain VBox. See that it works fine. After that, start a binary process of eliminating some of the code in whatever item you are adding to the tab navigator. --- In [email protected], "lytvynyuk" <[EMAIL PROTECTED]> wrote: > > 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? >
