Opens in a new windowOpens an external websiteOpens an external website in a new window
This website utilizes technologies such as cookies to enable essential site functionality, as well as for analytics, personalization, and targeted advertising. To learn more, view the following link: Privacy Notice
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 no idea what bootstrap was, but I discovered on the site that "Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites." Sounded like a good thing to leverage. Here is how I went about it:
I located the code for several bootstrap meters here on the w3schools site. There are 2 parts to the code, the first goes in the head of your html document and the second creates the actual bar/meter. I copied both parts.
In StoryLine (3 or 360) I added a trigger to fire at the 1st slide's timeline start that executes JavaScript. The script essentially adds the required html code to the header of the HTML5 player document then adds the code that creates the actual progress bar/meter directly in the StoryLine player. Here is the code:
// Append the header with the code contained in the variable. $('head').append(appendHeader);
// Load the required progress bar html code into a single variable. var progressBar = '<div class="progress" style="width:200px; position: absolute; margin: auto; right: 0; left: 0; top: 0px; bottom: 0px"><div class="progress-bar progress-bar-success progress-bar-striped active" id="my_progress" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:0%"></div></div>';
// Add the code to the html player document after the title. $(".presentation-title").after(progressBar);
Added 2 variables in SL: one to track progress as a number between 0 and 100 and another to track the color of the bar (red or green).
For this demo, I added 2 buttons to modify both the variables in the prior step and to execute some code that uses these variables to modify/adjust the progress meter. Button one 1st adds 5 to the progress variable and then executes the following JS:
// Establish StoryLine player connection and get current completion and current color of the bar var player=GetPlayer(); var myProgress = player.GetVar("Progress"); var barColor = player.GetVar("Color");
// Check the color of the bar and change it to green if it is currently red. // Progress-bar-success is the green bar and progress-bar-danger is the red one. function toggleColor() { $("#my_progress").toggleClass("progress-bar-success"); $("#my_progress").toggleClass("progress-bar-danger"); }; if (barColor == "Red"){ toggleColor(); };
// Update the progress bar with the new value. $('.progress-bar').css('width', myProgress+'%').attr('aria-valuenow', myProgress);
player.SetVar("Color", "Green");
Button 2 is identical to button 1 except that it subtracts 5 from the progress variable and changes the meter to red if it is green. The code is identical to above except it replaces the word red with green and the word green with red.
Absolutely. Replace this: $(".presentation-title").after(progressBar); with this: $("div.controls-group").after(progressBar);
For some unknown reason, this breaks the color change so you also need to change the code on your buttons. On BOTH buttons, replace this: function toggleColor() { $("#my_progress").toggleClass("progress-bar-success"); $("#my_progress").toggleClass("progress-bar-danger"); }; With this: function toggleColor() { $("div.progress-bar").toggleClass("progress-bar-success"); $("div.progress-bar").toggleClass("progress-bar-danger"); };
Hi Owen, this is cool, I can see a lot of extension by using this. Thanks for sharing your file and also introducing the websit! I could learn a lot from there!
It should be... that is strange. What are you seeing? There should be a bar in the player along the top that fills in green as you progress and red as it decreases.
I will have to try it again but I did not see a progress bar at the top of the screen. I just saw a percentage ie, 10%, 20% etc
just checked it on my iPhone and the top does not display. Is the progress bar in the player? If so, that might be why it is not showing on iPad or iPhone.
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.
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.
This may be a Storyline newbie's crazy idea, if the code base being used can be pasted in a HTML page.
And if that HTML page is called as small web object (scrolling locked) in Master/all slides of the Storyline project the progress bar could be placed in the stage area.
Would that work you think Owen? Maybe try it out Nitesh?
That would do it. Nice indirect way of adding it, Malathi. The JS would be little more complex to pass variable information down to the iframe, but I think it could be done.
"}},"componentScriptGroups({\"componentId\":\"custom.widget.GoogleTag\"})":{"__typename":"ComponentScriptGroups","scriptGroups":{"__typename":"ComponentScriptGroupsDefinition","afterInteractive":{"__typename":"PageScriptGroupDefinition","group":"AFTER_INTERACTIVE","scriptIds":[]},"lazyOnLoad":{"__typename":"PageScriptGroupDefinition","group":"LAZY_ON_LOAD","scriptIds":[]}},"componentScripts":[]},"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/NavbarDropdownToggle\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/NavbarDropdownToggle-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/EscalatedMessageBanner\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/users/UserLink\"]})":[{"__ref":"CachedAsset:text:en_US-components/users/UserLink-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/users/UserRank\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/users/UserRank-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageTime\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageTime-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageSolvedBadge\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageSolvedBadge-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageSubject\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageSubject-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageBody\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageBody-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageCustomFields\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageCustomFields-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageReplyButton\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageReplyButton-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/AcceptedSolutionButton\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/Pager/PagerLoadMore\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageView/MessageViewInline\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1743700260514"}],"message({\"id\":\"message:887870\"})":{"__ref":"ForumReplyMessage:message:887870"},"message({\"id\":\"message:887867\"})":{"__ref":"ForumReplyMessage:message:887867"},"message({\"id\":\"message:887865\"})":{"__ref":"ForumReplyMessage:message:887865"},"message({\"id\":\"message:887866\"})":{"__ref":"ForumReplyMessage:message:887866"},"message({\"id\":\"message:887871\"})":{"__ref":"ForumReplyMessage:message:887871"},"message({\"id\":\"message:887869\"})":{"__ref":"ForumReplyMessage:message:887869"},"message({\"id\":\"message:887857\"})":{"__ref":"ForumReplyMessage:message:887857"},"message({\"id\":\"message:887863\"})":{"__ref":"ForumReplyMessage:message:887863"},"message({\"id\":\"message:887864\"})":{"__ref":"ForumReplyMessage:message:887864"},"message({\"id\":\"message:887862\"})":{"__ref":"ForumReplyMessage:message:887862"},"message({\"id\":\"message:887861\"})":{"__ref":"ForumReplyMessage:message:887861"},"message({\"id\":\"message:887873\"})":{"__ref":"ForumReplyMessage:message:887873"},"message({\"id\":\"message:887859\"})":{"__ref":"ForumReplyMessage:message:887859"},"message({\"id\":\"message:887858\"})":{"__ref":"ForumReplyMessage:message:887858"},"message({\"id\":\"message:887868\"})":{"__ref":"ForumReplyMessage:message:887868"},"message({\"id\":\"message:887879\"})":{"__ref":"ForumReplyMessage:message:887879"},"message({\"id\":\"message:887860\"})":{"__ref":"ForumReplyMessage:message:887860"},"message({\"id\":\"message:887872\"})":{"__ref":"ForumReplyMessage:message:887872"},"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/users/UserAvatar\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/ranks/UserRankLabel\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/attachments/AttachmentView/AttachmentViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/nodes/NodeIcon\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/nodes/NodeIcon-1743700260514"}],"cachedText({\"lastModified\":\"1743700260514\",\"locale\":\"en-US\",\"namespaces\":[\"components/tags/TagView/TagViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1743700260514"}]},"CachedAsset:pages-1742808826000":{"__typename":"CachedAsset","id":"pages-1742808826000","value":[{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"BlogViewAllPostsPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId/all-posts/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"CasePortalPage","type":"CASE_PORTAL","urlPath":"/caseportal","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"CreateGroupHubPage","type":"GROUP_HUB","urlPath":"/groups/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"CaseViewPage","type":"CASE_DETAILS","urlPath":"/case/:caseId/:caseNumber","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"InboxPage","type":"COMMUNITY","urlPath":"/inbox","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"HelpFAQPage","type":"COMMUNITY","urlPath":"/help","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"IdeaMessagePage","type":"IDEA_POST","urlPath":"/idea/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"IdeaViewAllIdeasPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/all-ideas/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"LoginPage","type":"USER","urlPath":"/signin","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"BlogPostPage","type":"BLOG","urlPath":"/category/:categoryId/blogs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ThemeEditorPage","type":"COMMUNITY","urlPath":"/designer/themes","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TkbViewAllArticlesPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId/all-articles/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"OccasionEditPage","type":"EVENT","urlPath":"/event/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"OAuthAuthorizationAllowPage","type":"USER","urlPath":"/auth/authorize/allow","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"PageEditorPage","type":"COMMUNITY","urlPath":"/designer/pages","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"PostPage","type":"COMMUNITY","urlPath":"/category/:categoryId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ForumBoardPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TkbBoardPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"EventPostPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"UserBadgesPage","type":"COMMUNITY","urlPath":"/users/:login/:userId/badges","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"GroupHubMembershipAction","type":"GROUP_HUB","urlPath":"/membership/join/:nodeId/:membershipType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"MaintenancePage","type":"COMMUNITY","urlPath":"/maintenance","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"IdeaReplyPage","type":"IDEA_REPLY","urlPath":"/idea/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"UserSettingsPage","type":"USER","urlPath":"/mysettings/:userSettingsTab","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"GroupHubsPage","type":"GROUP_HUB","urlPath":"/groups","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ForumPostPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"OccasionRsvpActionPage","type":"OCCASION","urlPath":"/event/:boardId/:messageSubject/:messageId/rsvp/:responseType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"VerifyUserEmailPage","type":"USER","urlPath":"/verifyemail/:userId/:verifyEmailToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"AllOccasionsPage","type":"OCCASION","urlPath":"/category/:categoryId/events/:boardId/all-events/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"EventBoardPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TkbReplyPage","type":"TKB_REPLY","urlPath":"/kb/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"IdeaBoardPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"CommunityGuideLinesPage","type":"COMMUNITY","urlPath":"/communityguidelines","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"CaseCreatePage","type":"SALESFORCE_CASE_CREATION","urlPath":"/caseportal/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TkbEditPage","type":"TKB","urlPath":"/kb/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ForgotPasswordPage","type":"USER","urlPath":"/forgotpassword","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"IdeaEditPage","type":"IDEA","urlPath":"/idea/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TagPage","type":"COMMUNITY","urlPath":"/tag/:tagName","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"BlogBoardPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"OccasionMessagePage","type":"OCCASION_TOPIC","urlPath":"/event/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ManageContentPage","type":"COMMUNITY","urlPath":"/managecontent","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ClosedMembershipNodeNonMembersPage","type":"GROUP_HUB","urlPath":"/closedgroup/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"CommunityPage","type":"COMMUNITY","urlPath":"/","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ForumMessagePage","type":"FORUM_TOPIC","urlPath":"/discussions/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"IdeaPostPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"BlogMessagePage","type":"BLOG_ARTICLE","urlPath":"/blog/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"RegistrationPage","type":"USER","urlPath":"/register","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"EditGroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ForumEditPage","type":"FORUM","urlPath":"/discussions/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ResetPasswordPage","type":"USER","urlPath":"/resetpassword/:userId/:resetPasswordToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TkbMessagePage","type":"TKB_ARTICLE","urlPath":"/kb/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"BlogEditPage","type":"BLOG","urlPath":"/blog/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ManageUsersPage","type":"USER","urlPath":"/users/manage/:tab?/:manageUsersTab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ForumReplyPage","type":"FORUM_REPLY","urlPath":"/discussions/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"PrivacyPolicyPage","type":"COMMUNITY","urlPath":"/privacypolicy","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"NotificationPage","type":"COMMUNITY","urlPath":"/notifications","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"UserPage","type":"USER","urlPath":"/users/:login/:userId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"HealthCheckPage","type":"COMMUNITY","urlPath":"/health","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"OccasionReplyPage","type":"OCCASION_REPLY","urlPath":"/event/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ManageMembersPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/manage/:tab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"SearchResultsPage","type":"COMMUNITY","urlPath":"/search","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"BlogReplyPage","type":"BLOG_REPLY","urlPath":"/blog/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"GroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TermsOfServicePage","type":"COMMUNITY","urlPath":"/termsofservice","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"CategoryPage","type":"CATEGORY","urlPath":"/category/:categoryId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"ForumViewAllTopicsPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/all-topics/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"TkbPostPage","type":"TKB","urlPath":"/category/:categoryId/kbs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1742808826000,"localOverride":null,"page":{"id":"GroupHubPostPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"}],"localOverride":false},"CachedAsset:text:en_US-components/context/AppContext/AppContextProvider-0":{"__typename":"CachedAsset","id":"text:en_US-components/context/AppContext/AppContextProvider-0","value":{"noCommunity":"Cannot find community","noUser":"Cannot find current user","noNode":"Cannot find node with id {nodeId}","noMessage":"Cannot find message with id {messageId}"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Loading/LoadingDot-0":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Loading/LoadingDot-0","value":{"title":"Loading..."},"localOverride":false},"User:user:-1":{"__typename":"User","id":"user:-1","uid":-1,"login":"Deleted user","email":"","avatar":null,"rank":null,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":"ANONYMOUS","registrationTime":null,"confirmEmailStatus":false,"registrationAccessLevel":"VIEW","ssoRegistrationFields":[]},"ssoId":null,"profileSettings":{"__typename":"ProfileSettings","dateDisplayStyle":{"__typename":"InheritableStringSettingWithPossibleValues","key":"layout.friendly_dates_enabled","value":"true","localValue":"true","possibleValues":["true","false"]},"dateDisplayFormat":{"__typename":"InheritableStringSetting","key":"layout.format_pattern_date","value":"MM-dd-yyyy","localValue":"MM-dd-yyyy"},"language":{"__typename":"InheritableStringSettingWithPossibleValues","key":"profile.language","value":"en-US","localValue":null,"possibleValues":["en-US"]}},"deleted":false},"Theme:customTheme1":{"__typename":"Theme","id":"customTheme1"},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0yNi0wc1g3ZFg?image-coordinates=0%2C0%2C400%2C400\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bi0yNi0wc1g3ZFg?image-coordinates=0%2C0%2C400%2C400","mimeType":"image/png"},"Category:category:connect":{"__typename":"Category","id":"category:connect","entityType":"CATEGORY","displayId":"connect","nodeType":"category","depth":1,"title":"Connect","shortTitle":"Connect","parent":{"__ref":"Category:category:top"},"categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Category:category:top":{"__typename":"Category","id":"category:top","displayId":"top","nodeType":"category","depth":0,"title":"Top","entityType":"CATEGORY","shortTitle":"Top"},"Forum:board:discuss":{"__typename":"Forum","id":"board:discuss","entityType":"FORUM","displayId":"discuss","nodeType":"board","depth":2,"conversationStyle":"FORUM","title":"Discuss Articulate Products","description":"Join conversations and ask questions about Articulate products.","avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0yNi0wc1g3ZFg?image-coordinates=0%2C0%2C400%2C400\"}"},"profileSettings":{"__typename":"ProfileSettings","language":null},"parent":{"__ref":"Category:category:connect"},"ancestors":{"__typename":"CoreNodeConnection","edges":[{"__typename":"CoreNodeEdge","node":{"__ref":"Community:community:rwgqn69235"}},{"__typename":"CoreNodeEdge","node":{"__ref":"Category:category:connect"}}]},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"boardPolicies":{"__typename":"BoardPolicies","canPublishArticleOnCreate":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.forums.policy_can_publish_on_create_workflow_action.accessDenied","key":"error.lithium.policies.forums.policy_can_publish_on_create_workflow_action.accessDenied","args":[]}},"canReadNode":{"__typename":"PolicyResult","failureReason":null}},"shortTitle":"Discuss Articulate Products","repliesProperties":{"__typename":"RepliesProperties","sortOrder":"PUBLISH_TIME","repliesFormat":"threaded"},"forumPolicies":{"__typename":"ForumPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"eventPath":"category:connect/community:rwgqn69235board:discuss/","tagProperties":{"__typename":"TagNodeProperties","tagsEnabled":{"__typename":"PolicyResult","failureReason":null}},"requireTags":true,"tagType":"PRESET_ONLY"},"Rank:rank:5":{"__typename":"Rank","id":"rank:5","position":4,"name":"Super Hero","color":"4E3AD5","icon":null,"rankStyle":"FILLED"},"User:user:829879":{"__typename":"User","id":"user:829879","uid":829879,"login":"OwenHolt","deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C91f8d4b0-b37f-0131-2ee8-22000b2f96a1"},"rank":{"__ref":"Rank:rank:5"},"email":"","messagesCount":7,"biography":null,"topicsCount":0,"kudosReceivedCount":142,"kudosGivenCount":47,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2011-03-28T06:51:43.000-07:00","confirmEmailStatus":null},"followersCount":null,"solutionsCount":1,"entityType":"USER","eventPath":"community:rwgqn69235/user:829879"},"ForumTopicMessage:message:887856":{"__typename":"ForumTopicMessage","uid":887856,"subject":"Bootstrap Progress Meter","id":"message:887856","revisionNum":1,"repliesCount":37,"author":{"__ref":"User:user:829879"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:887856"},"readOnly":false,"editFrozen":false,"moderationData":{"__ref":"ModerationData:moderation_data:887856"},"body":"
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 no idea what bootstrap was, but I discovered on the site that \"Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites.\" Sounded like a good thing to leverage. Here is how I went about it:
\n\n
I located the code for several bootstrap meters here on the w3schools site. There are 2 parts to the code, the first goes in the head of your html document and the second creates the actual bar/meter. I copied both parts.
\n
In StoryLine (3 or 360) I added a trigger to fire at the 1st slide's timeline start that executes JavaScript. The script essentially adds the required html code to the header of the HTML5 player document then adds the code that creates the actual progress bar/meter directly in the StoryLine player. Here is the code: \n
// Append the header with the code contained in the variable. $('head').append(appendHeader);
\n
// Load the required progress bar html code into a single variable. var progressBar = '<div class=\"progress\" style=\"width:200px; position: absolute; margin: auto; right: 0; left: 0; top: 0px; bottom: 0px\"><div class=\"progress-bar progress-bar-success progress-bar-striped active\" id=\"my_progress\" role=\"progressbar\" aria-valuenow=\"0\" aria-valuemin=\"0\" aria-valuemax=\"100\" style=\"width:0%\"></div></div>';
\n
// Add the code to the html player document after the title. $(\".presentation-title\").after(progressBar);
\n
\n
Added 2 variables in SL: one to track progress as a number between 0 and 100 and another to track the color of the bar (red or green).
\n
For this demo, I added 2 buttons to modify both the variables in the prior step and to execute some code that uses these variables to modify/adjust the progress meter. Button one 1st adds 5 to the progress variable and then executes the following JS: \n
// Establish StoryLine player connection and get current completion and current color of the bar var player=GetPlayer(); var myProgress = player.GetVar(\"Progress\"); var barColor = player.GetVar(\"Color\");
\n
// Check the color of the bar and change it to green if it is currently red. // Progress-bar-success is the green bar and progress-bar-danger is the red one. function toggleColor() { $(\"#my_progress\").toggleClass(\"progress-bar-success\"); $(\"#my_progress\").toggleClass(\"progress-bar-danger\"); }; if (barColor == \"Red\"){ toggleColor(); };
\n
// Update the progress bar with the new value. $('.progress-bar').css('width', myProgress+'%').attr('aria-valuenow', myProgress);
\n
player.SetVar(\"Color\", \"Green\");
\nButton 2 is identical to button 1 except that it subtracts 5 from the progress variable and changes the meter to red if it is green. The code is identical to above except it replaces the word red with green and the word green with red.
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 no idea what bootstrap was, but I discovered on the site that \"Bootstrap is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first web sites.\" Sounded like a good thing to leverage. Here is how I went about it:
\n\n
I located the code for several bootstrap meters here on the w3schools site. There are 2 parts to the code, the first goes in the head of your html document and the second creates the actual bar/meter. I copied both parts.
\n
In StoryLine (3 or 360) I added a trigger to fire at the 1st slide's timeline start that executes JavaScript. The script essentially adds the required html code to the header of the HTML5 player document then adds the code that creates the actual progress bar/meter directly in the StoryLine player. Here is the code: \n
// Append the header with the code contained in the variable. $('head').append(appendHeader);
\n
// Load the required progress bar html code into a single variable. var progressBar = '<div class=\"progress\" style=\"width:200px; position: absolute; margin: auto; right: 0; left: 0; top: 0px; bottom: 0px\"><div class=\"progress-bar progress-bar-success progress-bar-striped active\" id=\"my_progress\" role=\"progressbar\" aria-valuenow=\"0\" aria-valuemin=\"0\" aria-valuemax=\"100\" style=\"width:0%\"></div></div>';
\n
// Add the code to the html player document after the title. $(\".presentation-title\").after(progressBar);
\n
\n
Added 2 variables in SL: one to track progress as a number between 0 and 100 and another to track the color of the bar (red or green).
\n
For this demo, I added 2 buttons to modify both the variables in the prior step and to execute some code that uses these variables to modify/adjust the progress meter. Button one 1st adds 5 to the progress variable and then executes the following JS: \n
// Establish StoryLine player connection and get current completion and current color of the bar var player=GetPlayer(); var myProgress = player.GetVar(\"Progress\"); var barColor = player.GetVar(\"Color\");
\n
// Check the color of the bar and change it to green if it is currently red. // Progress-bar-success is the green bar and progress-bar-danger is the red one. function toggleColor() { $(\"#my_progress\").toggleClass(\"progress-bar-success\"); $(\"#my_progress\").toggleClass(\"progress-bar-danger\"); }; if (barColor == \"Red\"){ toggleColor(); };
\n
// Update the progress bar with the new value. $('.progress-bar').css('width', myProgress+'%').attr('aria-valuenow', myProgress);
\n
player.SetVar(\"Color\", \"Green\");
\nButton 2 is identical to button 1 except that it subtracts 5 from the progress variable and changes the meter to red if it is green. The code is identical to above except it replaces the word red with green and the word green with red.
Absolutely. Replace this: $(\".presentation-title\").after(progressBar); with this: $(\"div.controls-group\").after(progressBar);
\n
For some unknown reason, this breaks the color change so you also need to change the code on your buttons. On BOTH buttons, replace this: function toggleColor() { $(\"#my_progress\").toggleClass(\"progress-bar-success\"); $(\"#my_progress\").toggleClass(\"progress-bar-danger\"); }; With this: function toggleColor() { $(\"div.progress-bar\").toggleClass(\"progress-bar-success\"); $(\"div.progress-bar\").toggleClass(\"progress-bar-danger\"); };
Absolutely. Replace this: $(\".presentation-title\").after(progressBar); with this: $(\"div.controls-group\").after(progressBar);
\n
For some unknown reason, this breaks the color change so you also need to change the code on your buttons. On BOTH buttons, replace this: function toggleColor() { $(\"#my_progress\").toggleClass(\"progress-bar-success\"); $(\"#my_progress\").toggleClass(\"progress-bar-danger\"); }; With this: function toggleColor() { $(\"div.progress-bar\").toggleClass(\"progress-bar-success\"); $(\"div.progress-bar\").toggleClass(\"progress-bar-danger\"); };
Hi Owen, this is cool, I can see a lot of extension by using this. Thanks for sharing your file and also introducing the websit! I could learn a lot from there!
Hi Owen, this is cool, I can see a lot of extension by using this. Thanks for sharing your file and also introducing the websit! I could learn a lot from there!
It should be... that is strange. What are you seeing? There should be a bar in the player along the top that fills in green as you progress and red as it decreases.
It should be... that is strange. What are you seeing? There should be a bar in the player along the top that fills in green as you progress and red as it decreases.
I will have to try it again but I did not see a progress bar at the top of the screen. I just saw a percentage ie, 10%, 20% etc
\n
just checked it on my iPhone and the top does not display. Is the progress bar in the player? If so, that might be why it is not showing on iPad or iPhone.
I will have to try it again but I did not see a progress bar at the top of the screen. I just saw a percentage ie, 10%, 20% etc
\n
just checked it on my iPhone and the top does not display. Is the progress bar in the player? If so, that might be why it is not showing on iPad or iPhone.
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.
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.
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.
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.
This may be a Storyline newbie's crazy idea, if the code base being used can be pasted in a HTML page.
\n
And if that HTML page is called as small web object (scrolling locked) in Master/all slides of the Storyline project the progress bar could be placed in the stage area.
\n
Would that work you think Owen? Maybe try it out Nitesh?
This may be a Storyline newbie's crazy idea, if the code base being used can be pasted in a HTML page.
\n
And if that HTML page is called as small web object (scrolling locked) in Master/all slides of the Storyline project the progress bar could be placed in the stage area.
\n
Would that work you think Owen? Maybe try it out Nitesh?
That would do it. Nice indirect way of adding it, Malathi. The JS would be little more complex to pass variable information down to the iframe, but I think it could be done.
That would do it. Nice indirect way of adding it, Malathi. The JS would be little more complex to pass variable information down to the iframe, but I think it could be done.
BTW how are you going with your anti- corruption policy course.
\n
","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:887873_1"},"latestVersion":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}},"customFields":[]},"CachedAsset:text:en_US-components/community/NavbarDropdownToggle-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarDropdownToggle-1743700260514","value":{"ariaLabelClosed":"Press the down arrow to open the menu"},"localOverride":false},"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/EscalatedMessageBanner-1743700260514","value":{"escalationMessage":"Escalated to Salesforce by {username} on {date}","viewDetails":"View Details","modalTitle":"Case Details","escalatedBy":"Escalated by: ","escalatedOn":"Escalated on: ","caseNumber":"Case Number: ","status":"Status: ","lastUpdateDate":"Last Update: ","automaticEscalation":"automatic escalation","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-components/users/UserLink-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/users/UserLink-1743700260514","value":{"authorName":"View Profile: {author}","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserRank-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserRank-1743700260514","value":{"rankName":"{rankName}","userRank":"Author rank {rankName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageTime-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageTime-1743700260514","value":{"postTime":"Published: {time}","lastPublishTime":"Last Update: {time}","conversation.lastPostingActivityTime":"Last posting activity time: {time}","conversation.lastPostTime":"Last post time: {time}","moderationData.rejectTime":"Rejected time: {time}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSolvedBadge-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolvedBadge-1743700260514","value":{"solved":"Solved"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSubject-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSubject-1743700260514","value":{"noSubject":"(no subject)"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageBody-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageBody-1743700260514","value":{"showMessageBody":"Show More","mentionsErrorTitle":"{mentionsType, select, board {Board} user {User} message {Message} other {}} No Longer Available","mentionsErrorMessage":"The {mentionsType} you are trying to view has been removed from the community.","videoProcessing":"Video is being processed. Please try again in a few minutes.","bannerTitle":"Video provider requires cookies to play the video. Accept to continue or {url} it directly on the provider's site.","buttonTitle":"Accept","urlText":"watch"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageCustomFields-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageCustomFields-1743700260514","value":{"CustomField.default.label":"Value of {name}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageReplyButton-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageReplyButton-1743700260514","value":{"repliesCount":"{count}","title":"Reply","title@board:BLOG@message:root":"Comment","title@board:TKB@message:root":"Comment","title@board:IDEA@message:root":"Comment","title@board:OCCASION@message:root":"Comment"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1743700260514","value":{"accept":"Mark as Solution","accepted":"Marked as Solution","errorHeader":"Error!","errorAdd":"There was an error marking as solution.","errorRemove":"There was an error unmarking as solution.","solved":"Solved","topicAlreadySolvedErrorTitle":"Solution Already Exists","topicAlreadySolvedErrorDesc":"Refresh the browser to view the existing solution"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMore-1743700260514","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable-1743700260514","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageView/MessageViewInline-1743700260514","value":{"bylineAuthor":"{bylineAuthor}","bylineBoard":"{bylineBoard}","anonymous":"Anonymous","place":"Place {bylineBoard}","gotoParent":"Go to parent {name}"},"localOverride":false},"Revision:revision:887870_1":{"__typename":"Revision","id":"revision:887870_1","lastEditTime":"2018-02-06T05:16:21.000-08:00"},"Revision:revision:887867_1":{"__typename":"Revision","id":"revision:887867_1","lastEditTime":"2018-01-04T08:04:53.000-08:00"},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS04ODc4NjUtOTEzOThpQTVDNjUzQUM1NEFGREJBNQ?revision=1\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bS04ODc4NjUtOTEzOThpQTVDNjUzQUM1NEFGREJBNQ?revision=1","title":"uploads_rte_jwrpctum_ProgBar.png","associationType":"BODY","width":727,"height":254,"altText":null},"Revision:revision:887865_1":{"__typename":"Revision","id":"revision:887865_1","lastEditTime":"2018-01-02T12:13:15.000-08:00"},"Revision:revision:887866_1":{"__typename":"Revision","id":"revision:887866_1","lastEditTime":"2018-01-03T15:09:32.000-08:00"},"Revision:revision:887871_1":{"__typename":"Revision","id":"revision:887871_1","lastEditTime":"2018-08-04T15:42:49.000-07:00"},"Revision:revision:887869_1":{"__typename":"Revision","id":"revision:887869_1","lastEditTime":"2018-02-06T03:41:31.000-08:00"},"Revision:revision:887857_1":{"__typename":"Revision","id":"revision:887857_1","lastEditTime":"2017-12-13T17:14:02.000-08:00"},"Revision:revision:887863_1":{"__typename":"Revision","id":"revision:887863_1","lastEditTime":"2017-12-28T08:50:19.000-08:00"},"Revision:revision:887864_1":{"__typename":"Revision","id":"revision:887864_1","lastEditTime":"2018-01-01T20:20:57.000-08:00"},"Revision:revision:887862_1":{"__typename":"Revision","id":"revision:887862_1","lastEditTime":"2017-12-28T05:52:15.000-08:00"},"Revision:revision:887861_1":{"__typename":"Revision","id":"revision:887861_1","lastEditTime":"2017-12-18T05:37:22.000-08:00"},"Revision:revision:887873_1":{"__typename":"Revision","id":"revision:887873_1","lastEditTime":"2018-08-12T23:56:02.000-07:00"},"Attachment:{\"id\":\"attachment:message887859AttachmentNumber1\",\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/attachments/rwgqn69235/discuss/175499/1/Bootstrap_Progress_Bar.story\"}":{"__typename":"Attachment","id":"attachment:message887859AttachmentNumber1","filename":"Bootstrap_Progress_Bar.story","filesize":971065,"contentType":"application/octet-stream","url":"https://community.articulate.com/t5/s/rwgqn69235/attachments/rwgqn69235/discuss/175499/1/Bootstrap_Progress_Bar.story"},"Revision:revision:887859_1":{"__typename":"Revision","id":"revision:887859_1","lastEditTime":"2017-12-14T08:32:41.000-08:00"},"Revision:revision:887858_1":{"__typename":"Revision","id":"revision:887858_1","lastEditTime":"2017-12-13T18:46:15.000-08:00"},"Revision:revision:887868_1":{"__typename":"Revision","id":"revision:887868_1","lastEditTime":"2018-02-06T02:56:05.000-08:00"},"Revision:revision:887879_1":{"__typename":"Revision","id":"revision:887879_1","lastEditTime":"2019-01-02T08:59:22.000-08:00"},"Revision:revision:887860_1":{"__typename":"Revision","id":"revision:887860_1","lastEditTime":"2017-12-16T10:26:00.000-08:00"},"Revision:revision:887872_1":{"__typename":"Revision","id":"revision:887872_1","lastEditTime":"2018-08-10T06:29:21.000-07:00"},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1743700260514","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1743700260514","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"CachedAsset:text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1743700260514","value":{"errorTitle":"Failed!","previewFile":"Preview File","downloadFile":"Download File {name}","removeFile":"Remove File {name}","errorBadExtension":"This file does not have a valid extension. \"{extensions}\" are the valid extensions.","errorFileEmpty":"This file is empty or does not exist.","errorTooLarge":"The maximum file size is: {maxFileSize}.","errorTooMany":"Too many attachments. The maximum number of attachments per message is: {maxAttachmentCount, number, integer}.","errorDuplicate":"This file is already attached."},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/nodes/NodeIcon-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/nodes/NodeIcon-1743700260514","value":{"contentType":"Content Type {style, select, FORUM {Forum} BLOG {Blog} TKB {Knowledge Base} IDEA {Ideas} OCCASION {Events} other {}} icon"},"localOverride":false},"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1743700260514":{"__typename":"CachedAsset","id":"text:en_US-components/tags/TagView/TagViewChip-1743700260514","value":{"tagLabelName":"Tag name {tagName}"},"localOverride":false}}}},"page":"/forums/ForumMessagePage/ForumMessagePage","query":{"boardId":"discuss","messageSubject":"bootstrap-progress-meter","messageId":"887856"},"buildId":"Btkyb7T6TeYM9D2gUmiOv","runtimeConfig":{"buildInformationVisible":false,"logLevelApp":"info","logLevelMetrics":"info","openTelemetryClientEnabled":false,"openTelemetryConfigName":"articulate","openTelemetryServiceVersion":"25.2.0","openTelemetryUniverse":"prod","openTelemetryCollector":"http://localhost:4318","openTelemetryRouteChangeAllowedTime":"5000","apolloDevToolsEnabled":false,"inboxMuteWipFeatureEnabled":false},"isFallback":false,"isExperimentalCompile":false,"dynamicIds":["./components/seo/QAPageSchema/QAPageSchema.tsx","./components/customComponent/CustomComponent/CustomComponent.tsx","./components/community/Navbar/NavbarWidget.tsx","./components/community/Breadcrumb/BreadcrumbWidget.tsx","./components/messages/TopicWithThreadedReplyListWidget/TopicWithThreadedReplyListWidget.tsx","./components/messages/RelatedContentWidget/RelatedContentWidget.tsx","./components/messages/MessageListForNodeByRecentActivityWidget/MessageListForNodeByRecentActivityWidget.tsx","./components/messages/MessageView/MessageViewStandard/MessageViewStandard.tsx","./components/messages/ThreadedReplyList/ThreadedReplyList.tsx","./components/customComponent/CustomComponentContent/TemplateContent.tsx","../shared/client/components/common/List/UnstyledList/UnstyledList.tsx","./components/messages/MessageView/MessageView.tsx","../shared/client/components/common/Pager/PagerLoadMore/PagerLoadMore.tsx","../shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable/PagerLoadMorePreviousNextLinkable.tsx","./components/messages/MessageView/MessageViewInline/MessageViewInline.tsx","../shared/client/components/common/List/ListGroup/ListGroup.tsx","../shared/client/components/common/List/UnwrappedList/UnwrappedList.tsx","./components/attachments/AttachmentView/AttachmentView.tsx","./components/attachments/AttachmentView/AttachmentViewChip/AttachmentViewChip.tsx","./components/tags/TagView/TagView.tsx","./components/tags/TagView/TagViewChip/TagViewChip.tsx"],"appGip":true,"scriptLoader":[]}