Hi Alina, checking this issue I found a huge problem that I just solve in my latest commit with Jewel SectionContent. I guess your HGroup was inside a SectionContent right?
Consider this code (from TDJ but adapted a bit to trace things): <j:HGroup localId="hg" gap="3" className="wrapper" width="50%" initComplete="trace(hg.width, hg.percentWidth, hg.explicitWidth)"> <j:Button text="X" emphasis="primary"/> <j:Button text="Y" emphasis="secondary"/> <j:Button text="Z" emphasis="emphasized"/> <j:Button text="0" /> </j:HGroup> until now, trying in TDJ, the trace at initComplete reports: 0 50 NaN, while now reports 184 50 NaN, what is the right one. Before trying the HGroup outside a SectionContent was working good as I checked in a simple royale app that was declaring the HGroup just right after the View. So the problem was that SectionContent starts with "display: none" when the content inside is created, and that was reporting width or height : 0px Let me know if the last commit solves your problem. Thanks El sáb., 8 ago. 2020 a las 23:40, Alina Kazi (<[email protected]>) escribió: > Hi, > > I am using jewel HGroup its width and height is set to 100%. In > actionscript code i want to see its real height and width according to the > current screen resolution. > localID of HGroup is hg1. > > In actionscript code when i write hg1.height and hg1.width both are 0. > How can i get actual width and height in this case? > > Alina > > > -- Carlos Rovira http://about.me/carlosrovira
