クリック位置を中心にしてフレックスを作成しようとしています。 私のコードはSWF/IMAGEを中心にクリックした位置:FLEX
<fx:Declarations>
<s:Parallel id="transformer" target="{swe}">
<s:Scale id="scaleby" scaleXBy="0.2" scaleYBy="0.2" autoCenterTransform="false"/>
</s:Parallel>
</fx:Declarations>
<s:Group width="500" height="350" clipAndEnableScrolling="true">
<s:SWFLoader source="CasuarinaBigMap.swf" width="500" height="350" id="swe" click="swe_clickHandler(event)"/>
</s:Group>
protected function swe_clickHandler(event:MouseEvent):void
{
scaleby.transformX = event.mouseX;
scaleby.transformY = event.mouseY;
transformer.play();
}
私qustionは、私はボックスの中央にクリックしたポイントのパンを作ることができるどのよう あるのですか? Plsヘルプ。
ありがとうございました。
はこの答えをdownvoted人は、彼がそれと間違っていると考えるものを明確にしてくださいもらえますか?また、[この回答](http://stackoverflow.com/questions/8256863/as3-knowing-how-many-arguments-a-function-takes/8257062#8257062)がおおよそ同時... – RIAstar