touchscreen swipe gesture
#1
I have done
swipe left > SmallStepBack
swipe right > StepForward
How Can I do?
double tap > when video pause then play, when video play then pause ?
tap > show the video control bar

here is my configure

thanks


Code:
<keymap>
  <fullscreenvideo>
    <touch>
      <tap>Pause</tap>
      <swipe direction="left">SmallStepBack</swipe>
      <swipe direction="right">StepForward</swipe>
      <tap pointer="2">ActivateWindow(VideoOSD)</tap>
      <rightclick>ActivateWindow(VideoOSD)</rightclick>
    </touch>
  </fullscreenvideo>
  <FullScreenInfo>
    <touch>
      <tap>Pause</tap>
      <swipe direction="left">SmallStepBack</swipe>
      <swipe direction="right">StepForward</swipe>
      <tap pointer="2">ActivateWindow(VideoOSD)</tap>
      <rightclick>ActivateWindow(VideoOSD)</rightclick>
    </touch>
  </FullScreenInfo>
  <SlideShow>
    <touch>
      <zoom>ZoomGesture</zoom>
      <rotate>RotateGesture</rotate>
    </touch>
  </SlideShow>
</keymap>
Reply

Logout Mark Read Team Forum Stats Members Help
touchscreen swipe gesture0