Audio in hotspot

Is it possible to insert audio in Hotspot clicks?

ActivePresenter Version: 8.0.5

OS: 10.13.6

Notes:

Hi,

It seems that it’s not possible to do that from the UI.
We’ll try to support it in future releases.
Now you can add the following script to slide On Load event to play an audio when a hotspot is clicked:

prez.object('Hotspot name').on('ap-click', function() {
    prez.object('audio object name').animate(AP.EffectType.MEDIA_PLAY);
});

You need to add the above code for each hotspot.
And the audio is inserted into slide as an object, it’s not an audio resource in Resources pane.
You may also need to set the audio Initially Hidden and not autoplay.

Regards

1 Like

Thank you Toan, I’ll try!