Forum Discussion
SaraMcCartney
11 years agoCommunity Member
Does anyone know of a way to change the "next" button to an "end" button at the end of a story?
Hello!
I'm trying to find a way to change the "next" button in Articulate Storyline 2 to an "end" button at the end of the presentation that would take the users out of the story...does anyone kno...
BryanMendelson-
9 years agoCommunity Member
You can actually change this text by using the following JavaScript. All you would need to do is assign a trigger, execute JavaScript when the timeline ends. Replace "REPLACE-ME" with your own text. I can validate that it works in SL3.
NEXT BUTTON
var button_next = $('.slide-control-button-next .text').text()
$('.slide-control-button-next .text').text("REPLACE-ME")
$('.slide-control-button-next').click(function(){
$('.slide-control-button-next .text').text(button_next)
})
PREVIOUS BUTTON
var button_prev = $('.slide-control-button-previous .text').text()
$('.slide-control-button-previous .text').text("REPLACE-ME")
$('.slide-control-button-previous').click(function(){
$('.slide-control-button-previous .text').text(button_prev)
})
AlexanderDekker
5 years agoCommunity Member
That sounds like what we need exactly. However, your example does not work in my copy of Storyline 3. Perhaps something has changed in the implementation. Could someone verify?
Related Content
- 10 months ago