Fix for Callout positioning on rotate FLEX-34712Bug shows itself on device, and not in the simulator. When device is rotated, updatePopupPosition() is called too soon and positions to incorrect location. This fix adds a flag after detecting stageOrientationChange. The flag is read in updateDisplayList() and queues updatePopUpPostion() by calling it using callLater().
Fixes a bug on FlatSpark Button and ButtonIcon skins when borderRadius is changedRemoved Up, Over, Down and Disabled states in favor of just using color.[state]
Fixes a bug on FlatSpark Button and ButtonIcon skins when borderRadius is changedRemoved Up, Over, Down and Disabled states in favor of just using color.[state]
FLEX-34625 CAUSE: When focusThickness is set to 0, the BitmapData that HighlightBitmapCaptureSkin.updateDisplayList() tries to create is of 0 width and height, which results in a fatal error. SOLUTION: check whether the width and the height of the BitmapData we want to construct are 0, and, if so, return.