2013-02-21 73 views
2

我正在開發flex 4.6中的閱讀器應用程序,並且在StageWebView中顯示我的內容。我在該視圖中實施了滑動手勢,但無法使用。Swipe手勢在StageWebview中不工作

當我在StageWebView下方滑動時,它工作正常,當我在StageWebView上滑動時它無法識別它。

我的代碼:

private function handleSwipe(event:TransformGestureEvent):void 
{ 
trace('handleSwirpe()'); 
// Swipe was to the right 
if (event.offsetX == 1) 
{ // or -1 for the left 
webView.viewPort = null; 
navigator.popView(); 
} 
} 

我怎樣才能做到這一點....如果你想捕捉滑動手勢在StageWebView中,你應該使用JavaScript的方法來檢測手勢

回答

1

。 並且這必須在您在StageWebView空間中加載的頁面中進行編碼。

希望它有幫助:)