Audio on animation

I am doing a few projects and want to know how to extend audio to the full length of the animation instead of just adding it to one frame

What Wick Editor Version are you using?
1.19.3

Describe the Problem
adding audio to the whole animation

What have you tried so far?
I have tried extending a clear frame to the whole animation length of a second layer

Hey @Junior, you can create a new layer specifically for the audio, add the audio file to a frame there, and select the frame, then in the inspector, look for the length option and set it to any number you like.

Another option is to drag the edge of the frame to extend the frame.

A third option is to play the sound using code, in a default script use this code:

playSound("sound.mp3") 

(replace “sound.mp3” with the name of the asset)

Ok, I will try that, thank you,