Forum Discussion
OwenHolt
7 years agoSuper Hero
Bootstrap Progress Meter
I recently discovered some progress meters on the w3schools.com website and wondered if I could leverage them in a StorLine project. The meters are part of a library of code called Bootstrap. I had ...
NiteshKumar-34e
7 years agoCommunity Member
Is it possible? progress bar can come on stage area.
- OwenHolt7 years agoSuper Hero
The stage is a protected area for objects created in StoryLine. I do not (currently) believe it possible to add this particular form of progress meter to the stage via JavaScript.
- JohnWillis6 years agoCommunity Member
Hi Nitesh,
I just had a quick go at getting the progress bar on the slide itself, you can do this by changing
$("div.controls-group").after(progressBar);
to
$(".main-window-slide-container").after(progressBar);
This will appear dead centre of the screen so you will need to amend the positioning to allow you to move it where you would like it but it's dead centre on mine. - Hope this helps.