Forum Discussion
ThomasRaju
2 years agoCommunity Member
Background audio feature
Hi Team,
I am developing an eLearning module. I have added background audio features for main slides and in the next scene, I have created assessments.
I know that this audio feature is applica...
Jürgen_Schoene_
2 years agoCommunity Member
here some Javascript (Storyline 3.76) to control the background music
toggle background music:
DS.courseAudio.toggleEnabled();
start background music:
if( !DS.courseAudio.enabled() ){
DS.courseAudio.toggleEnabled();
}
stop background-music
if( DS.courseAudio.enabled() ){
DS.courseAudio.toggleEnabled();
}
https://360.articulate.com/review/content/ffb0f380-0b73-4f33-bf02-760a5a9a7767/review
I have not tested what happends if mixing normal audio/video and background music