0
我有一個簡單的xml畫廊(ViewNavigatorApplication),第一個視圖是拇指和第二個視圖命名爲「SlideView」。 使用SlideTransition從「導航內容區域按鈕」中相互轉換所有視圖都會很好地發生 SlideView有一個圖像控件,一次顯示每個圖像。在幻燈片視圖中,我檢測到幻燈片手勢,它會更改圖像控件的源屬性並彈出新圖像。 問題是,我想要新圖像在每次滑動時,源屬性(綁定到當前幻燈片)。有任何想法嗎?圖像控制滑動在視圖源變化(柔性移動應用程序)
當前幻燈片視圖中的基本碼是像
protected function swipeGestureHandler(event:TransformGestureEvent):void
{
if (event.offsetX == -1) {
_dm.currItem.nextSlide();
}
else if (event.offsetX == 1) {
_dm.currItem.prevSlide();
}
}
<s:layout>
<s:VerticalLayout/>
</s:layout>
<s:Image id="slideImage" visible="true" width="100%" height="85%"
source="{_dm.currItem.currSlide}" />
我試圖限定在FX聲明區域有一定的影響等
<fx:Declarations>
<s:Wipe id="wipeOut" direction="left" duration="500" />
<s:Wipe id="wipeIn" direction="right" duration="500" />
<s:Move id="MoveLeft" target="{slideImage}" xBy="300" duration="500"/>
<s:Move id="MoveRight" target="{slideImage}" xBy="-300" duration="500"/>
</fx:Declarations>
和在圖像控制使用它們像
hideEffect="{MoveLeft}" showEffect="{MoveRight}"
但它的沒用... 任何想法,請幫助..
謝謝,它有幫助。很好地解決了。讓我知道是否有人需要完成代碼示例。 – lala
我正在嘗試做類似的事情。如果你可以給我你的代碼示例,這將是greate – leossmith