Forum Discussion

JeffSims's avatar
JeffSims
Community Member
3 years ago

'Jump To Slide' method for Storyline?

Does the Storyline player have a public method for jumping to a particular slide?

We are creating a wrapper for Storyline activities and would like to send a JavaScript call to the Storyline player to jump to a particular slide. For example, something along the lines of:

var player = GetPlayer();
player.GoToSlideNumber(8);

Is something like this possible to do with Storyline?

  • JeffSims's avatar
    JeffSims
    Community Member

    Thanks Jürgen, I noticed this as well and was just checking if anyone has figured out some way of accomplishing this?

    The only similar trick I've seen is where you could set a variable, then have a trigger to jump to a slide when the variable changes. But it seems you'd have to make a trigger for every possible slide to jump to. Or is there some way to pass in the number of the slide to jump to?

    for example: SetVar("goToSlide",8)  then have a Trigger for when goToSlide changes, with an action to Jump to Slide number x (whatever number is sent)... or similar.