Se positionner à la fin d'une diapositive pour ne pas lire toute une vidéo

Problem: BOnjour, j’ai des dispositives qui ont des vidéos qui se lisent automatiquement mais si l’utilisateur ne veut pas lire la vidéo en entier et aller à la fin de la diapo comment puis je programmer cela ? MErci.

ActivePresenter version: 8

OS: windows 10

Notes:

Hi,

You can tick the Show Media Control checkbox (select video > Properties pane > Media tab > Show Media Controls) so that users can pause the video if they want.
You can add a button, then add the On Click event to it > add Go to Slide action. When users click this button, it will navigate to another slide.

Regards,
Quynh

Merci ! oui je pensais faire cela mais moi je ne veux pas aller à la diapo suivante mais à la fin de la diapo en cours de lecture

Hi,

You can use an Execute JavaScript action with the following script to jump to a specific time in the current slide:

// jump to the time at 30000 milliseconds (30s) of the current slide
// update this value by your slide duration to go to the end of the slide
prez.showSlideAt(prez.currentSlideIndex(), 30000);

Regards

Génial, un grand merci c’est parfait.