[ https://issues.apache.org/jira/browse/FLEX-33235?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13495027#comment-13495027 ]
Justin Mclean commented on FLEX-33235: -------------------------------------- I think you should have the right JIRA access now as I've added you to the JIRA committer group. > mx.utils.PopUpUtil > ------------------ > > Key: FLEX-33235 > URL: https://issues.apache.org/jira/browse/FLEX-33235 > Project: Apache Flex > Issue Type: Bug > Affects Versions: Adobe Flex SDK 4.6 (Release) > Reporter: Pablo Beltran > Assignee: Leif Wells > Fix For: Apache Flex 4.9.0 > > Attachments: FLEX-33235_Fix.patch > > > PROBLEM DESCRIPTION: > The code just at the end of the method "applyPopUpTransform": > ==================================================== > if (tmpColorTransform != null) > { > tmpColorTransform.alphaMultiplier = oldAlpha; > tmpColorTransform.alphaOffset = 0; > } > DisplayObject(popUp).transform.colorTransform = tmpColorTransform; > ==================================================== > raises an exception (null value not allowed) when the tmpColorTransform > variable value is null. > SOLUTION: > Move the following line into the block: > DisplayObject(popUp).transform.colorTransform = tmpColorTransform; > ==================================================== > if (tmpColorTransform != null) > { > tmpColorTransform.alphaMultiplier = oldAlpha; > tmpColorTransform.alphaOffset = 0; > DisplayObject(popUp).transform.colorTransform > = tmpColorTransform; > } > ==================================================== > REPRODUCE: > Show a Callout spark control with a Sprite (not UIComponent) as owner. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira