Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Apache Flex 4.10.0, Apache Flex 4.11.0
Description
Hiting tab to move focus away from component which has pure AS skin without hostComponent property defined results in runtime error.
Error happens in the endHighlightBitmapCapture of MobileSkin:
public function endHighlightBitmapCapture():Boolean
{
var exclusions:Array = focusSkinExclusions;
if (!exclusions)
Note that property accessed as dynamic property but there is no check for property existence. It should be there just like in case of beginHighlightBitmapCapture:
public function beginHighlightBitmapCapture():Boolean
{
var exclusions:Array = focusSkinExclusions;
if (!exclusions)