Create JS Double click not working in IPad

500 Views Asked by At

I have added a createjs Double click event on a Movieclip, its working fine in Desktop. But its not working in Touch Devices(IPad , Iphone). Will it work ? or is there a way to achieve it other than using timer on click.

1

There are 1 best solutions below

1
On

You can enable touch events when they are supported using something like this

if (createjs.Touch.isSupported()) {
    createjs.Touch.enable(stage);
}

After you don't need the touch events anymore, make sure you disable them using

createjs.Touch.disable(stage);