Déclenchement d'une interaction au clic sur un bouton

Problem: Déclenchement d’une interaction au clic sur un bouton

Bonjour,

je cherche depuis plusieurs jours à lancer une animation (déplacement d’une forme) au clic sur un bouton.

J’ai bien trouvé comment lancer le déplacement de la forme mais au clic n’importe où sur la slide

Pouvez vous m’aider ?

ActivePresenter version: Version 9.1.5 - 64-bit build. (Sortie: 2024.06.12)

OS: Windows11

Notes:

Hi,

Based on your description, I think you may need to use an interactive timeline in ActivePresenter. Then use the On Click event > Start Timeline action.
Kindly take a look at the tutorial video and written tutorial below to see if it addresses your concern:

Feel free to discuss more if it’s not what you want.
We’re here to assist you!
BR,
Thuy

Hi ,

thx for your answer but this id not what I want.

You will find attached my “project”.

The blue square have to move only when I click on the red button.

Test move on click.approj (284 KB)

thx

Hi,

The blue square have to move only when I click on the red button.

Yes, you should create an interactive timeline, for example, shape moving.
Then, add a motion path animation for the blue square shape in that interactive timeline.
image

Go back to the main timeline, select the red button > add the On Click event > Start Timeline: shape moving

Please check my attached file for details:
Test move on click_fixed.approj (280 KB)

BR,

@Bertrand_coquerelle
Il y a une autre chose q’on peut faire.

Mettez l’object ou vous voudriez et cliquez la boite pour le faire caché

Ensuite, il faut faire une ‘action’ pour ‘Execute JavaScript’ sur le bouton.

Voici le code pour l’animation

prez.object("Shape_3").show(
   AP.EffectType.FLY_IN,1000,{
   direction: AP.EffectDirection.TOP
});

On peut changer le temps de l’animation (1000)
1000 veut dire une seconde
et aussi la direction avec TOP RIGHT LEFT or BOTTOM

Desole pour mon francais - J’espere que vous le comprenez

clickMoveJS.approj (292 KB)

1 Like