Gallery Problem
I have a image slider, made it the pan gesture event:
Multitouch.inputMode = MultitouchInputMode.GESTURE;
mc.addEventListener(TransformGestureEvent.GESTURE_PAN, fl_PanHandler_5);
function fl_PanHandler_5(event:TransformGestureEvent):void
{
event.currentTarget.x += event.offsetX;
event.currentTarget.y += event.offsetY;
}
Which is working great, but inside this moviecllip being panned i have a series of images with instances image1-20 and i want to create a gallery out of them, now ideally i would like this all to be on the same scene, where the image pops up there and then. Without going to a new frame. I know how to do that (going to a new frame) if worst come's to worst, then if i got to a new fram can i keep it so the panning movieclip does not move, so if i go to a new frame the panning movieclip is in the last postion the user left it in before clicking to go to a new frame???