Here is the link to the release notes. Check out the known issues section as there are some other useful tidbits in there that tripped me up until I read through it.
http://www.adobe.com/support/documentation/en/flex/2/releasenotes_flex 201_sdk.html Shaun --- In [email protected], "Mark Doberenz" <[EMAIL PROTECTED]> wrote: > > Thanks for that. I'd rather do that than have an empty class. > > I couldn't find this info in the release notes though. I did find a > reference to Modules, but nothing about Modules not sizing to 100%. > > Mark > > On 27 Mar 2007 13:12:14 -0700, Shaun <[EMAIL PROTECTED]> wrote: > > > > Try setting percentWidth and percentHeight to 100 in your module > > tag. This is a known issue posted on the 2.0.1 release notes page, > > and setting percentWidth works around it. > > > > Shaun > > > > --- In [email protected] <flexcoders% 40yahoogroups.com>, "Mark > > Doberenz" <dobieag01@> > > wrote: > > > > > > Well, in case anyone else has this issue, I found a bit of a hack > > to get it > > > to work. > > > I just created an mxml class called CustomModule.mxml and this is > > all that's > > > in it: > > > > > > <?xml version="1.0" encoding="utf-8"?> > > > > <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" > > > > height="100%"> > > > > </mx:Module> > > > > > > > > > Now, whenever I make a new module, I just point it to the > > CustomModule > > > class as the main class to use, and everything resizes/positions > > fine. I'm > > > not sure why, but I'll take it. > > > > > > Just to make sure, I changed one of my modules to point to > > mx:Module again, > > > and the children didn't resize/position correctly. Setting it back > > to > > > CustomModule made it all work again. > > > > > > Hopefully this can help someone. > > > Mark > > > > > > > > > On 3/27/07, Mark Doberenz <dobieag01@> wrote: > > > > > > > > I'm having issues with modules and I'm hoping someone can help me. > > > > > > > > Create a module project and layout the module using the following > > code: > > > > > > > > > <?xml version="1.0" encoding="utf-8"?> > > > > > <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" > > layout="absolute" > > > > > width="100%" height="100%"> > > > > > <mx:Label text="Tree Module" x="10" y="10"/> > > > > > <mx:Button x="10" y="36" label="Button 1"/> > > > > > <mx:Button x="82" y="36" label="Button 2"/> > > > > > <mx:Tree x="0" y="66" width="100%" height="100%"/> > > > > > </mx:Module> > > > > > > > > > > > > Compile it and then create another project that is an application > > that > > > > only has a ModuleLoader that points the the above module like the > > following: > > > > > > > > > > > > > <?xml version="1.0" encoding="utf-8"?> > > > > > <mx:Application xmlns:mx=" http://www.adobe.com/2006/mxml" > > > > > layout="absolute"> > > > > > <mx:ModuleLoader width="100%" height="100%"> > > > > > <mx:url> file:///PATH_TO_ABOVE_MODULE.swf</mx:url> > > > > > </mx:ModuleLoader> > > > > > </mx:Application> > > > > > > > > > > > > > > > > > The module in Flex Builder will appear correctly where the tree > > controller > > > > is placed at 0,66 and spans 100% x 100%. > > > > However, when the module is loaded into the Application, > > everything is > > > > placed correctly, but the tree seems to use a minimumWidth and > > minimumHeight > > > > value instead of the 100% x 100%. > > > > > > > > Has anyone seen this issue before? > > > > > > > > Mark > > > > > > > > > > > > > >

