Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Adobe Flex SDK Previous
-
None
-
None
-
Affected OS(s): Mac
Affected OS(s): Mac OS 10.5
Browser: Safari
Language Found: English
Description
When using a spark container, children do not dispatch a FlexEvent.ADD when they are added to its displayList.
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo">
<!-- will not trace -->
<mx:HBox add="
">
<!-- will trace, as is in an mx container -->
<s:Button add="
"/>
</mx:HBox>
<!-- will not trace -->
<s:Group add="
">
<!-- will not trace -->
<s:Button add="
"/>
</s:Group>
</s:Application>