You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Pablo Beltran (JIRA)" <ji...@apache.org> on 2012/10/26 23:51:12 UTC

[jira] [Created] (FLEX-33235) mx.utils.PopUpUtil

Pablo Beltran created FLEX-33235:
------------------------------------

             Summary: 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


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

[jira] [Commented] (FLEX-33235) mx.utils.PopUpUtil

Posted by "Justin Mclean (JIRA)" <ji...@apache.org>.
    [ 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

[jira] [Commented] (FLEX-33235) mx.utils.PopUpUtil

Posted by "Leif Wells (JIRA)" <ji...@apache.org>.
    [ 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

[jira] [Commented] (FLEX-33235) mx.utils.PopUpUtil

Posted by "Nick Kwiatkowski (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FLEX-33235?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13494936#comment-13494936 ] 

Nick Kwiatkowski commented on FLEX-33235:
-----------------------------------------

Leif,

Did you want to commit that patch the develop branch, or do you want me to do it?
                
> 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

[jira] [Closed] (FLEX-33235) mx.utils.PopUpUtil

Posted by "Nick Kwiatkowski (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FLEX-33235?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Nick Kwiatkowski closed FLEX-33235.
-----------------------------------

       Resolution: Fixed
    Fix Version/s: Apache Flex 4.9.0
         Assignee: Leif Wells

Closed and marked as fixed, per Leif Wells.  Committed via SVN revision 1405410 to the develop branch.
                
> 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

[jira] [Updated] (FLEX-33235) mx.utils.PopUpUtil

Posted by "Leif Wells (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FLEX-33235?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Leif Wells updated FLEX-33235:
------------------------------

    Attachment: FLEX-33235_Fix.patch

This is a patch for the fix as cited in the task description.


                
> 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