yishayw opened a new issue #994:
URL: https://github.com/apache/royale-asjs/issues/994


   In this app
   
   ```
   <?xml version="1.0" encoding="utf-8"?>
   <s:Application 
        xmlns:fx="http://ns.adobe.com/mxml/2009";
        xmlns:s="library://ns.apache.org/royale/spark"
        creationComplete="init()"
        >
        <fx:Script>
                <![CDATA[
                        private function init():void
                        {
                                myContent.height = 200;
                                myContent.width = 200;
                        }
   
                ]]>
        </fx:Script>            
        <s:Group id="upperContainer">
                <s:Group id="bottomContainer" width="100%">
                        <s:BorderContainer backgroundColor="blue" 
id="myContent"/>
                </s:Group>
        </s:Group>
   </s:Application>
   ```
   
   bottomContainer height will remain 0. But if I initialize myContent with the 
values given in init() then it's height will be 200. It should not matter if 
height of myContent was given after creationComplete, or before.


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to