How can I double tap a Sprite

Hello there, I was trying to see if I can press the button twice and something would happen with a single button

There is a search facility here, double tap returns some 34 results...

double tap

I looked at the extension below:

It really helped me but I wonder if there is one for a sprite

I want my app to be able to double click a sprite and found no results of that

A double click is like a click, with an associated memory of when the last click happened on that Sprite, and some click logic to decide if it happened within the last n milliseconds (n is the twitch factor).

Set a global variable example click to 0. When you tap on the sprite it increases by 1. If the variable is equal to 2 your touch performs the action and the variable returns to 0.

Thank you

you need to consider the tap intervals, and if you are tapping same imageSprite.


double click sample
double_click.aia (2.9 KB)

Thanks for this working effort but I got it to work and then its not letting me double click look at my app

Sprite_Click.aia (9.7 KB)

What it should do is let you drag it around and if you click it twice then it takes you to the next screen. It should not count as clicking when you drag the sprite.

Your two timer scheme is too complicated for me.

The second clock always runs.

Bothe timers are super fast (3 ms, 1 ms).

You never update the global variable that those timers check with any sprite interactions.

Do you want me to make this code again

You don't need to please me.

It's your project.

However, in general there are lots of different ways to code solutions.

I stick to the simplest ones personally.

How could we make it so that the sprite will stay in one place before going to another screen

If you don't want to move the sprite, why do you have blocks that move the sprite?