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-
8 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)
})
MultiversityDev
6 years agoCommunity Member
Can you help me to do this for Storyline 360. I want to change color of next button when timeline ends. I'm using storyline 360 modern player. Please help me.
- LaurenDuvall6 years agoStaff
Hi!
I'm not sure Bryan is still subscribed to this discussion. To contact him directly, you'll want to use the "Contact Me" button in his ELH profile!
Related Content
- 8 months ago
- 9 months ago