i have my SWIPE GESTURE on my scene 1 and i have my WebView inside of a movieclip.
Is there a way to remove the webview from the stage when i use the SWIPE GESTURE
Multitouch.inputMode = MultitouchInputMode.GESTURE;stage.addEventListener(TransformGestureEvent.GESTURE_SWIPE, swipeMe);
function swipeMe (e:TransformGestureEvent) :void {
if (e.offsetY == -1) {
var c1TweenX3 = new Tween(bg_search,"y",Back.easeOut,125,-680,2,true);
var c2TweenY3 = new Tween(logo,"y",Back.easeOut,611,438,2,true);
var TweentxtLogo3 = new Tween(txtlogo,"y",Back.easeOut,627,450,2,true); gotoAndStop("start");
stage.removeEventListener(TransformGestureEvent.GESTURE_SWIPE, swipeMe);
}
}