Forum Discussion
LisaStruebing
12 years agoCommunity Member
Scroll Bar start position
Is there a way to have the scroll bars start with the bar at the bottom of the window/list instead of the top? I'm doing a software simulation and the scroll windows in the software always have the...
RussellKillips-
6 years agoCommunity Member
You can try doing this with an execute javascript trigger.
var x = document.getElementsByClassName("scrollarea-area");
x[0].scrollTop = x[0].scrollHeight;
You may need to change the x[0]'s to x[1]'s or x[2]'s to target a specific 'scroll area'.
Here's a sample storyline 360 project for you to take a look at.
- JennaRigg-43db65 years agoCommunity Member
Thank you, Russell! I needed the scrollbar to default to the bottom to simulate the software environment. This worked beautifully and with no changes on my part! Very much appreciate your help.