Return-Path: X-Original-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 32481D2AE for ; Sun, 11 Nov 2012 21:59:13 +0000 (UTC) Received: (qmail 39169 invoked by uid 500); 11 Nov 2012 21:59:12 -0000 Delivered-To: apmail-incubator-flex-dev-archive@incubator.apache.org Received: (qmail 39124 invoked by uid 500); 11 Nov 2012 21:59:12 -0000 Mailing-List: contact flex-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-dev@incubator.apache.org Received: (qmail 39116 invoked by uid 99); 11 Nov 2012 21:59:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 11 Nov 2012 21:59:12 +0000 Date: Sun, 11 Nov 2012 21:59:12 +0000 (UTC) From: "Leif Wells (JIRA)" To: flex-dev@incubator.apache.org Message-ID: <928397148.98565.1352671152337.JavaMail.jiratomcat@arcas> In-Reply-To: <1461306248.33753.1351288272402.JavaMail.jiratomcat@arcas> Subject: [jira] [Commented] (FLEX-33235) mx.utils.PopUpUtil MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/FLEX-33235?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13495011#comment-13495011 ] Leif Wells commented on FLEX-33235: ----------------------------------- Nick, Thanks for asking. After talking with Alex, I've committed this patch to the develop branch. If I had appropriate JIRA access I could have assigned this task to myself and marked it fixed. Sigh. Leif > 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 > 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