I have a sample with accordion and have a problem.
[Fault] exception, information=ReferenceError: Error #1069: Property container not found on razor.controls.Image and there is no default value.
Fault, toggleContents() at HidablePane.as:76
I looked for in toggleContents() and see this code
for each (var z:Object in children)
{
if (!open && !z.container.visible)
excludes[z.container] = true;
if (open && excludes[z.container])
continue;
z.container.visible = open;
}
I can't understand what is container. I found on any Class such as Container, Panel, VBox, Layer....but can't see this property
Anyones can help me?