나는 블리드 영역을 표현하기 위해 플렉스 4에서 fxg 도형의 가장자리에 굵은 테두리를 추가하려고합니다 (모양 : munch2 id = "paper").개요 flex 4 fxg 그래픽
사람이 할 수있는 방법을 제안 할 수 있습니다 제발, 내가 다윗 FXG에게
<?xml version="1.0" encoding="utf-8"?>
<s:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:shapes="fxgGraphics.shapes.*"
width="100%" height="100%">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Style>
@namespace s "library://ns.adobe.com/flex/spark";
@namespace mx "library://ns.adobe.com/flex/mx";
@namespace shapes "fxgGraphics.shapes.*";
#paper {
border: 3px solid #ff6600;
}
</fx:Style>
<shapes:munch2 id="paper" width="100%" height="100%" horizontalCenter="0" verticalCenter="0" />
</s:Module>
테두리를 가져 오기 위해 fxg 인스턴스에 GlowFilter를 추가 할 수 있습니다. –