vote up 1 vote down star

Hello, a .fla is 500 x 300. Inside, content moves OUT of the 500 x 300 stage so that it appears like it hides or moves off of the screen.

.fla complied... loaded into Flex via SWFLoader:

<mx:Conainer width="500" height="300">
       <mx:SWFLoader width="100%" height="100%" />
</mx:Conainer>

Loaded .swf file shows outside of the 500 x 300 Container in Flex.

How can i get it so that only what is INSIDE of the Container is visible?

flag

Do you want the swf to be resized so it will be visible all inside the canvas, or you want to mask all is outside the canvas ? – Adrian Pirvulescu Jul 29 at 16:58
Adrian, for this problem I would like to mask what is outside the canvas. However, I would also like to know the former solution you mention for my own personal edification, if you wouldn't mind. Thanks. – Tomaszewski Jul 29 at 17:06

2 Answers

vote up 0 vote down
<mx:Conainer width="500" height="300" clipContent="true">
       <mx:SWFLoader width="100%" height="100%" />
</mx:Conainer>

Use "clipContent" property

Flex help for Canvas:

clipContent:Boolean [read-write]

Whether to apply a clip mask if the positions and/or sizes of this container's children extend outside the borders of this container. If false, the children of this container remain visible when they are moved or sized outside the borders of this container. If true, the children of this container are clipped.

If clipContent is false, then scrolling is disabled for this container and scrollbars will not appear. If clipContent is true, then scrollbars will usually appear when the container's children extend outside the border of the container. For additional control over the appearance of scrollbars, see horizontalScrollPolicy and verticalScrollPolicy.


Adrian

My Blog :D

link|flag
unfortunatly, this does not work. The .swf still comes out of the SWFLoader and the container. :( – Tomaszewski Jul 29 at 17:22
OK.. so you have a fla file which his content exceeds the sizes of 500x300? the you may have a chance by adding a mask inside the fla so the content will be masked outside original size – Adrian Pirvulescu Jul 29 at 17:36
Adrian, I have tried this as well. I am now toying with using the "mask" property. – Tomaszewski Jul 29 at 17:50
vote up 0 vote down check

Ok, i figured it out.

<mx:Canvas id="swfHolder" mask="{maskCanvas}">
        <mx:SWFLoader id="swffer" scaleContent="true" />
</mx:Canvas>

<mx:Canvas id="maskCanvas" backgroundColor="#000000"/>

The trick is to use the "mask" property. Note the object doing the "masking" must have a backgroundColor property set. I found this article helpful: link text

link|flag
nice to know! :) – Adrian Pirvulescu Jul 29 at 20:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.