Skip to main content
Known Participant
January 5, 2016
Question

Clickable Swipe Menu

  • January 5, 2016
  • 1 reply
  • 476 views

How to Swipe Menu and click buttons. Page 1 of menu contains many buttons.

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
January 5, 2016

what code are you using to detect a swipe?

Known Participant
January 5, 2016

what do you mean? i just try to experiment the example templates on Adobe Flash CS6. its the swipe gallery, is it possible?

Sent from my iPhone

kglad
Community Expert
Community Expert
January 5, 2016

you detect clicks and swipes using code.

because you don't appear to have much experience using code, try adding a basic click detector to your swipe project:

yourclickable.addEventListener(MouseEvent.CLICK,clickF):

function clickF(e:MouseEvent):void{

e.currentTarget.rotation+=30;

}