On 5/12/05, Simard, Ghislain <[EMAIL PROTECTED]> wrote:
> Yes...when you select as an example the second node called "Representant
> autorise", the scrollbar is there.
> I did change the margin and I have the same problem.
> Can you see the behavior?
I got myself confused. Now I understand what you mean. It seems like
a bug. Here's a workaround:
<mx:Loader contentPath="foo.mxml.swf" scaleContent="false"
width="100%" height="100%"
resize="adjustContentWidth(event.target)" />
<mx:Script>
import mx.controls.Loader;
function adjustContentWidth(loader:Loader):Void
{
loader.content.width = loader.width;
loader.content.height = loader.height;
}
</mx:Script>
Basically you adjust the content width and height every time the
Loader resizes. Somehow the content width and height.
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/