Forum Discussion

SamHill's avatar
SamHill
Super Hero
5 months ago

Rise Learning Journal / Notes

 

BETA distribution files Instructions for implementation further down the page under the heading BETA Version Release.

I've been working on a Learning Journal for Rise. I have an BETA version I'd like to share on SCORM Cloud.

The features we have included so far are:

  1. Comments persisted between sessions (SCORM 1.2 & SCORM 2004 3rd and 4th Ed)
  2. Save comments, associated with blocks individual blocks
  3. Comments are organised into topics/pages
  4. Edit existing Comments
  5. Delete Comments
  6. Print comments (to printer, or PDF is you have the required software installed)
  7. Export comments to Word (*.doc)
  8. Pagination (If comments exceed a defined number, they are split into pages)
  9. Add the functionality to individual blocks, or globally.

There are some things that needs to be finalised which will not take a great deal of work to complete.

  1. Mobile compatibility
  2. WCAG 2.2 AA

What I'm looking for is a bit of community input, as I know people have wanted this feature for quite some time. This is my best guess of how somebody might use a learning journal, but would love to hear any other examples of how it could function, or additional useful features that could be included.

If you would like to check it out on SCORM Cloud. You can visit this URL: Rise Learning Journal on SCORM Cloud

Update (3rd December 2024)

I have continued to work on this project and it is now SCORM 2004 compatible. Again, it is using the cmi.comments_from_learner. Unfortunately I found a significant issue with the Articulate implementation of the SCORM 1.2 and 2004 comments. I am in communication with support after logging the issue. I am hoping I can convince them that the implementation is incorrect, and the base script is updated. In the meantime, I am applying a patch to the Articulate "WriteComment" function to ensure comments are stored correctly for SCORM 1.2 and SCORM 2004.

I have also made some cosmetic changes and updated the CSS for the HTML to ensure the application picks up the current Rise module theme (colours, fonts etc).

I've fixed a few bugs I have found along the way with regards to deleting journal entries, and editing journal entries when not on the page they originated from. This all appears to be working really well now.

My next priority will be working on the CSS to ensure it is mobile compatible. Once all of the HTML and CSS is finalised, I'll then work on the accessibility. I've been implementing aria attributes as I go along, but there is still some testing and development to be done on that side of things.

I will be looking to release this as a BETA to a handful of people early in the new year.

Update (9th December 2024) Accessibility

Started work on accessibility. Currently implementing and then will be looking to test using JAWS 2024 and NVDA over the xmas holiday period.

On track for BETA release Jan 2025.

Update (09 January 2025) Accessibility & refactoring

Still working on accessibility and refactoring. There is a little more work than first forecast. Yes, I know, you've never heard that from a developer before. I'm 50/50 as to whether I can get this out in January. It will depend on other work commitments, but I will keep this post updated.

I have decided to simplify the colour scheme and move away from using the defined "branding" colours inherited from Rise, as I was finding this a bit unpredictable with colour contrast, and so in the interest of ensuring the content has the best colour contrast, I'll be hard coding the CSS rather than using the CSS variables defined in Rise. I'll re-visit this in future.

Looking at the code, I need some serious refactoring as I think I found some redundancies and so need to delete any unused code that I added and then abandoned.

Oh, and Happy New Year.

Update (24 January 2025) Accessibility & refactoring

Almost ready for BETA release. Should be ready for release next Tuesday. Accessibility just about completed. I think I could spend another few days improving things, but I think this will be a good first release.

BETA Version Release

Contact: notes@rebusmedia.com

Minimum requirements:

  • Rise course published SCORM 1.2 or 2004 (xAPI not currently supported)
  • LMS Support for cmi.comments (TalentLMS cmi.comments implentation is not supported as the comments are not persisted between sessions).

Release Notes:

This is a BETA release, and is provided as is without any warranties and It should be used with caution and fully tested for your use case before considering for production.

If you do find bugs, please report them to notes@rebusmedia.com (include browser, LMS, device) and I'll release a fix as quickly as possible. This is a side project and so does come second to our day job which can be busy, and so you may need a certain level of patience. Fixes can be expedited for your use case through engagement of our services for time critical projects. 

It has been tested on mobile, but not extensively (Google Pixel + iPhone).

Win/Chrome has been the browser used for development, and testing has also been performed on Win/Firefox and Win/Edge.

Features requests:

If you require any features that deviate from the BETA version, they will be considered on their merit, but can only be guaranteed for your own implementation through engagement for our services.

We have a long list of features that we would like to add if there is enough interest in the application and if it is viable.

Accessibility:

We made the decision to remove colors from the modal window theme to keep it simple and generic and accessible (high color contrast). The application has been tested with JAWS 2024 and is fully keyboard accessible and keeps assistive technology users informed of what is happening when interacting with the modal window. I'm always willing to make improvements to accessibility as a priority. Accessibility issues are treated as a bug and not a feature request.

Implementation:

  1. Publish your Rise course to either SCORM 1.2 or 2004
  2. Download the two files note.min.css and notes.min.js files to your computer.
  3. Extract your published Rise course to your computer and then copy the note.min.css and note.min.js files to the scormcontent\lib folder
  4. Open the scormcontent\index.html file in a simple text editor such as notepad and paste the following text just before the closing head element, which looks like this </head>. 

    <link type="text/css" rel="stylesheet" href="lib/notes.min.css"> <script type="text/javascript" src="lib/notes.min.js" data-notes-per-page="5"></script>

    It will look something like this:

    // Excerpt of scormcontent/index.html starts window.__loadEntry = __loadEntry window.__loadRemoteEntry = __loadRemoteEntry window.__loadJsonp = __loadJsonp window.__resolveJsonp = __resolveJsonp window.__fetchCourse = __fetchCourse })() </script> <link type="text/css" rel="stylesheet" href="lib/notes.min.css"> <script type="text/javascript" src="lib/notes.min.js" data-notes-per-page="5"></script> </head> <body> <div id="app"></div> // Excerpt of scormcontent/index.html ends
  5. You can adjust the data-notes-per-page="5" attribute to determine how many notes should be listed in the viewer, before the pagination (note navigation) kicks in.
  6. Save the scormcontent/index.html file
  7. It's important to get this bit right, as the LMS expects the imsmanifest file in the root of the zip file you are about to create. Navigate to the folder containing imsmanifest.xml and then select all (CTL+A) and then select archive/zip/compress depending on the software you use the terminology can be different. It must be a zip file though and the imasmanifest.xml file must be in the root of the zip file.

     

Update (28 January 2025) Print functionality improvement

After some user feedback, I have adjust the print functionality so that there is less chance of the student losing the course window during printing. When print is completed or cancelled, the print page closes and the user is return to the course window.

Update (30 January 2025)

Fix: Added functionality to handle learn.riseusercontent.com cmi.comments implementation. The cmi.comments implementation is incorrect on the LMS and requires the application to retrieve all comments and save to the LMS rather than appending to existing comments. This could cause memory issues if users add multiple long comments over time.

CSS: Improved CSS for mobile view (using full height of the screen to display the application.

Update (31 January 2025)

Bug: There is a known issue with TalentLMS. TalentLMS does not persist SCORM 1.2 cmi.comments between sessions. All comments are disregarded at the end of the session. For this reason, we cannot support TalentLMS unless TalentLMS changes the functionality of the SCORM 1.2 cmi.comments.

CSS:  Improved CSS for mobile view. Supporting devices with a minimum screen width of 355px wide.

Update (07 March 2025)

New configuration option: I have added a configuration option that allows you to determine where the note button should be inserted (instead of globally).

In order to determine where the note button should be inserted, you need to follow these steps:

  1. Grab a copy of the latest version of the JS and CSS files
  2. Wherever you would like to insert the note button, within the Rise authoring environment, simply add {RM.NOTES} to the top of the block, for example:

  3. Follow the Implementation instructions, outlined earlier in this post.
  4. When you come to add the script to the HTML file, you will need to add an extra data attribute to the <script> tag called data-notes-global and set the value as false.

    <script type="module" src="lib/notes.min.js" data-notes-global="false"></script>

Update (12 March 2025)

BETA Distribution files, including the README.MD document, are available to download.

This will be the last feature addition for a while now. Bug fixes and stabilisation will continue, but any new features will have to wait or can be requested via notes@rebusmedia.com.

Prompt

You can now add a prompt to the note when defining a notes button using the {RM.NOTES} directive. The prompt is defined as a configuration option in the following way {RM.NOTES PROMPT="Prompt text goes here."}. It would look something like this in the Rise author environment.

This would ensure that a notes button is inserted on this block, and when selected, will display the text input, preceded by the prompt "What should you include in your clinical notes?".

In order to use the prompt, you must set the global flag to false using the <script> tag as follows:

<script type="module" src="lib/notes.min.js" data-notes-global="false"></script>

Note button position

The note button default position is the top right of the target block. The button can now be positioned at the centre bottom of the target block. The position configuration can be used with the global flag set to true (buttons inserted automatically on blocks) or set to false (buttons only inserted where the {RM.NOTES} directive is present within the block.

<script type="module" src="lib/notes.min.js" data-notes-button-centre-bottom="true"></script>

 

85 Replies

"}},"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\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/NavbarDropdownToggle\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/NavbarDropdownToggle-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/users/UserAvatar\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/ranks/UserRankLabel\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"components/tags/TagView/TagViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageListMenu\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageListMenu-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/AcceptedSolutionButton\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/Pager/PagerLoadMore\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable-1744833252935"}],"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageView/MessageViewInline\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1744833252935"}],"message({\"id\":\"message:1210588\"})":{"__ref":"ForumReplyMessage:message:1210588"},"message({\"id\":\"message:1214340\"})":{"__ref":"ForumReplyMessage:message:1214340"},"message({\"id\":\"message:1211811\"})":{"__ref":"ForumReplyMessage:message:1211811"},"message({\"id\":\"message:1211860\"})":{"__ref":"ForumReplyMessage:message:1211860"},"message({\"id\":\"message:1211861\"})":{"__ref":"ForumReplyMessage:message:1211861"},"message({\"id\":\"message:1208003\"})":{"__ref":"ForumReplyMessage:message:1208003"},"message({\"id\":\"message:1208525\"})":{"__ref":"ForumReplyMessage:message:1208525"},"message({\"id\":\"message:1214346\"})":{"__ref":"ForumReplyMessage:message:1214346"},"message({\"id\":\"message:1208165\"})":{"__ref":"ForumReplyMessage:message:1208165"},"message({\"id\":\"message:1208239\"})":{"__ref":"ForumReplyMessage:message:1208239"},"message({\"id\":\"message:1214175\"})":{"__ref":"ForumReplyMessage:message:1214175"},"message({\"id\":\"message:1214327\"})":{"__ref":"ForumReplyMessage:message:1214327"},"message({\"id\":\"message:1214543\"})":{"__ref":"ForumReplyMessage:message:1214543"},"message({\"id\":\"message:1214042\"})":{"__ref":"ForumReplyMessage:message:1214042"},"message({\"id\":\"message:1214121\"})":{"__ref":"ForumReplyMessage:message:1214121"},"message({\"id\":\"message:1214148\"})":{"__ref":"ForumReplyMessage:message:1214148"},"message({\"id\":\"message:1214048\"})":{"__ref":"ForumReplyMessage:message:1214048"},"message({\"id\":\"message:1214335\"})":{"__ref":"ForumReplyMessage:message:1214335"},"message({\"id\":\"message:1208281\"})":{"__ref":"ForumReplyMessage:message:1208281"},"message({\"id\":\"message:1214342\"})":{"__ref":"ForumReplyMessage:message:1214342"},"message({\"id\":\"message:1208402\"})":{"__ref":"ForumReplyMessage:message:1208402"},"message({\"id\":\"message:1208524\"})":{"__ref":"ForumReplyMessage:message:1208524"},"message({\"id\":\"message:1208541\"})":{"__ref":"ForumReplyMessage:message:1208541"},"message({\"id\":\"message:1212530\"})":{"__ref":"ForumReplyMessage:message:1212530"},"message({\"id\":\"message:1214338\"})":{"__ref":"ForumReplyMessage:message:1214338"},"message({\"id\":\"message:1213475\"})":{"__ref":"ForumReplyMessage:message:1213475"},"message({\"id\":\"message:1213607\"})":{"__ref":"ForumReplyMessage:message:1213607"},"message({\"id\":\"message:1214337\"})":{"__ref":"ForumReplyMessage:message:1214337"},"cachedText({\"lastModified\":\"1744833252935\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/nodes/NodeIcon\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/nodes/NodeIcon-1744833252935"}]},"Theme:customTheme1":{"__typename":"Theme","id":"customTheme1"},"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","es-ES"]},"repliesSortOrder":{"__typename":"InheritableStringSettingWithPossibleValues","key":"config.user_replies_sort_order","value":"DEFAULT","localValue":"DEFAULT","possibleValues":["DEFAULT","LIKES","PUBLISH_TIME","REVERSE_PUBLISH_TIME"]}},"deleted":false},"CachedAsset:pages-1744705662280":{"__typename":"CachedAsset","id":"pages-1744705662280","value":[{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"BlogViewAllPostsPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId/all-posts/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"CasePortalPage","type":"CASE_PORTAL","urlPath":"/caseportal","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"CreateGroupHubPage","type":"GROUP_HUB","urlPath":"/groups/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"CaseViewPage","type":"CASE_DETAILS","urlPath":"/case/:caseId/:caseNumber","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"InboxPage","type":"COMMUNITY","urlPath":"/inbox","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"HelpFAQPage","type":"COMMUNITY","urlPath":"/help","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"IdeaMessagePage","type":"IDEA_POST","urlPath":"/idea/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"IdeaViewAllIdeasPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/all-ideas/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"LoginPage","type":"USER","urlPath":"/signin","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"BlogPostPage","type":"BLOG","urlPath":"/category/:categoryId/blogs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ThemeEditorPage","type":"COMMUNITY","urlPath":"/designer/themes","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TkbViewAllArticlesPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId/all-articles/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"OccasionEditPage","type":"EVENT","urlPath":"/event/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"OAuthAuthorizationAllowPage","type":"USER","urlPath":"/auth/authorize/allow","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"PageEditorPage","type":"COMMUNITY","urlPath":"/designer/pages","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"PostPage","type":"COMMUNITY","urlPath":"/category/:categoryId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ForumBoardPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TkbBoardPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"EventPostPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"UserBadgesPage","type":"COMMUNITY","urlPath":"/users/:login/:userId/badges","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"GroupHubMembershipAction","type":"GROUP_HUB","urlPath":"/membership/join/:nodeId/:membershipType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"MaintenancePage","type":"COMMUNITY","urlPath":"/maintenance","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"IdeaReplyPage","type":"IDEA_REPLY","urlPath":"/idea/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"UserSettingsPage","type":"USER","urlPath":"/mysettings/:userSettingsTab","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"GroupHubsPage","type":"GROUP_HUB","urlPath":"/groups","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ForumPostPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"OccasionRsvpActionPage","type":"OCCASION","urlPath":"/event/:boardId/:messageSubject/:messageId/rsvp/:responseType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"VerifyUserEmailPage","type":"USER","urlPath":"/verifyemail/:userId/:verifyEmailToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"AllOccasionsPage","type":"OCCASION","urlPath":"/category/:categoryId/events/:boardId/all-events/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"EventBoardPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TkbReplyPage","type":"TKB_REPLY","urlPath":"/kb/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"IdeaBoardPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"CommunityGuideLinesPage","type":"COMMUNITY","urlPath":"/communityguidelines","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"CaseCreatePage","type":"SALESFORCE_CASE_CREATION","urlPath":"/caseportal/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TkbEditPage","type":"TKB","urlPath":"/kb/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ForgotPasswordPage","type":"USER","urlPath":"/forgotpassword","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"IdeaEditPage","type":"IDEA","urlPath":"/idea/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TagPage","type":"COMMUNITY","urlPath":"/tag/:tagName","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"BlogBoardPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"OccasionMessagePage","type":"OCCASION_TOPIC","urlPath":"/event/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ManageContentPage","type":"COMMUNITY","urlPath":"/managecontent","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ClosedMembershipNodeNonMembersPage","type":"GROUP_HUB","urlPath":"/closedgroup/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"CommunityPage","type":"COMMUNITY","urlPath":"/","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ForumMessagePage","type":"FORUM_TOPIC","urlPath":"/discussions/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"IdeaPostPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"BlogMessagePage","type":"BLOG_ARTICLE","urlPath":"/blog/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"RegistrationPage","type":"USER","urlPath":"/register","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"EditGroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ForumEditPage","type":"FORUM","urlPath":"/discussions/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ResetPasswordPage","type":"USER","urlPath":"/resetpassword/:userId/:resetPasswordToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TkbMessagePage","type":"TKB_ARTICLE","urlPath":"/kb/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"BlogEditPage","type":"BLOG","urlPath":"/blog/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ManageUsersPage","type":"USER","urlPath":"/users/manage/:tab?/:manageUsersTab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ForumReplyPage","type":"FORUM_REPLY","urlPath":"/discussions/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"PrivacyPolicyPage","type":"COMMUNITY","urlPath":"/privacypolicy","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"NotificationPage","type":"COMMUNITY","urlPath":"/notifications","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"UserPage","type":"USER","urlPath":"/users/:login/:userId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"HealthCheckPage","type":"COMMUNITY","urlPath":"/health","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"OccasionReplyPage","type":"OCCASION_REPLY","urlPath":"/event/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ManageMembersPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/manage/:tab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"SearchResultsPage","type":"COMMUNITY","urlPath":"/search","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"BlogReplyPage","type":"BLOG_REPLY","urlPath":"/blog/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"GroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TermsOfServicePage","type":"COMMUNITY","urlPath":"/termsofservice","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"CategoryPage","type":"CATEGORY","urlPath":"/category/:categoryId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"ForumViewAllTopicsPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/all-topics/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"localOverride":null,"page":{"id":"TkbPostPage","type":"TKB","urlPath":"/category/:categoryId/kbs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1744705662280,"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}","userBanned":"We're sorry, but you have been banned from using this site.","userBannedReason":"You have been banned for the following reason: {reason}"},"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},"Rank:rank:5":{"__typename":"Rank","id":"rank:5","position":4,"name":"Super Hero","color":"4E3AD5","icon":null,"rankStyle":"FILLED"},"User:user:45789":{"__typename":"User","id":"user:45789","uid":45789,"login":"SamHill","deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C19e2cf70-b37e-0131-2ee8-22000b2f96a1"},"rank":{"__ref":"Rank:rank:5"},"email":"","messagesCount":1634,"biography":null,"topicsCount":54,"kudosReceivedCount":332,"kudosGivenCount":139,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2013-05-10T08:21:59.000-07:00","confirmEmailStatus":null},"followersCount":null,"solutionsCount":50,"entityType":"USER","eventPath":"community:rwgqn69235/user:45789"},"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","entityType":"CATEGORY","displayId":"top","nodeType":"category","depth":0,"title":"Top","shortTitle":"Top"},"Forum:board:discuss":{"__typename":"Forum","id":"board:discuss","entityType":"FORUM","displayId":"discuss","nodeType":"board","depth":2,"conversationStyle":"FORUM","repliesProperties":{"__typename":"RepliesProperties","sortOrder":"PUBLISH_TIME","repliesFormat":"threaded"},"tagProperties":{"__typename":"TagNodeProperties","tagsEnabled":{"__typename":"PolicyResult","failureReason":null}},"requireTags":true,"tagType":"PRESET_ONLY","description":"Join conversations and ask questions about Articulate products.","title":"Discuss Articulate Products","shortTitle":"Discuss Articulate Products","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},"theme":{"__ref":"Theme:customTheme1"},"boardPolicies":{"__typename":"BoardPolicies","canViewSpamDashBoard":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.access_spam_quarantine.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.access_spam_quarantine.allowed.accessDenied","args":[]}},"canArchiveMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.content_archivals.enable_content_archival_settings.accessDenied","key":"error.lithium.policies.content_archivals.enable_content_archival_settings.accessDenied","args":[]}},"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}},"forumPolicies":{"__typename":"ForumPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0yNi0wc1g3ZFg?image-coordinates=0%2C0%2C400%2C400\"}"},"eventPath":"category:connect/community:rwgqn69235board:discuss/"},"ForumTopicMessage:message:1208000":{"__typename":"ForumTopicMessage","uid":1208000,"subject":"Rise Learning Journal / Notes","id":"message:1208000","revisionNum":34,"repliesCount":85,"author":{"__ref":"User:user:45789"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1208000"},"readOnly":false,"editFrozen":false,"moderationData":{"__ref":"ModerationData:moderation_data:1208000"},"body":"

 

\n

BETA distribution files Instructions for implementation further down the page under the heading BETA Version Release.

\n

I've been working on a Learning Journal for Rise. I have an BETA version I'd like to share on SCORM Cloud.

\n

The features we have included so far are:

\n
    \n
  1. Comments persisted between sessions (SCORM 1.2 & SCORM 2004 3rd and 4th Ed)
  2. \n
  3. Save comments, associated with blocks individual blocks
  4. \n
  5. Comments are organised into topics/pages
  6. \n
  7. Edit existing Comments
  8. \n
  9. Delete Comments
  10. \n
  11. Print comments (to printer, or PDF is you have the required software installed)
  12. \n
  13. Export comments to Word (*.doc)
  14. \n
  15. Pagination (If comments exceed a defined number, they are split into pages)
  16. \n
  17. Add the functionality to individual blocks, or globally.
  18. \n
\n

There are some things that needs to be finalised which will not take a great deal of work to complete.

\n
    \n
  1. Mobile compatibility
  2. \n
  3. WCAG 2.2 AA
  4. \n
\n

What I'm looking for is a bit of community input, as I know people have wanted this feature for quite some time. This is my best guess of how somebody might use a learning journal, but would love to hear any other examples of how it could function, or additional useful features that could be included.

\n

If you would like to check it out on SCORM Cloud. You can visit this URL: Rise Learning Journal on SCORM Cloud

\n

Update (3rd December 2024)

\n

I have continued to work on this project and it is now SCORM 2004 compatible. Again, it is using the cmi.comments_from_learner. Unfortunately I found a significant issue with the Articulate implementation of the SCORM 1.2 and 2004 comments. I am in communication with support after logging the issue. I am hoping I can convince them that the implementation is incorrect, and the base script is updated. In the meantime, I am applying a patch to the Articulate \"WriteComment\" function to ensure comments are stored correctly for SCORM 1.2 and SCORM 2004.

\n

I have also made some cosmetic changes and updated the CSS for the HTML to ensure the application picks up the current Rise module theme (colours, fonts etc).

\n

I've fixed a few bugs I have found along the way with regards to deleting journal entries, and editing journal entries when not on the page they originated from. This all appears to be working really well now.

\n

My next priority will be working on the CSS to ensure it is mobile compatible. Once all of the HTML and CSS is finalised, I'll then work on the accessibility. I've been implementing aria attributes as I go along, but there is still some testing and development to be done on that side of things.

\n

I will be looking to release this as a BETA to a handful of people early in the new year.

\n

Update (9th December 2024) Accessibility

\n

Started work on accessibility. Currently implementing and then will be looking to test using JAWS 2024 and NVDA over the xmas holiday period.

\n

On track for BETA release Jan 2025.

\n

Update (09 January 2025) Accessibility & refactoring

\n

Still working on accessibility and refactoring. There is a little more work than first forecast. Yes, I know, you've never heard that from a developer before. I'm 50/50 as to whether I can get this out in January. It will depend on other work commitments, but I will keep this post updated.

\n

I have decided to simplify the colour scheme and move away from using the defined \"branding\" colours inherited from Rise, as I was finding this a bit unpredictable with colour contrast, and so in the interest of ensuring the content has the best colour contrast, I'll be hard coding the CSS rather than using the CSS variables defined in Rise. I'll re-visit this in future.

\n

Looking at the code, I need some serious refactoring as I think I found some redundancies and so need to delete any unused code that I added and then abandoned.

\n

Oh, and Happy New Year.

\n

Update (24 January 2025) Accessibility & refactoring

\n

Almost ready for BETA release. Should be ready for release next Tuesday. Accessibility just about completed. I think I could spend another few days improving things, but I think this will be a good first release.

\n

BETA Version Release

\n

Contact: notes@rebusmedia.com

\n

Minimum requirements:

\n\n

Release Notes:

\n

This is a BETA release, and is provided as is without any warranties and It should be used with caution and fully tested for your use case before considering for production.

\n

If you do find bugs, please report them to notes@rebusmedia.com (include browser, LMS, device) and I'll release a fix as quickly as possible. This is a side project and so does come second to our day job which can be busy, and so you may need a certain level of patience. Fixes can be expedited for your use case through engagement of our services for time critical projects. 

\n

It has been tested on mobile, but not extensively (Google Pixel + iPhone).

\n

Win/Chrome has been the browser used for development, and testing has also been performed on Win/Firefox and Win/Edge.

\n

Features requests:

\n

If you require any features that deviate from the BETA version, they will be considered on their merit, but can only be guaranteed for your own implementation through engagement for our services.

\n

We have a long list of features that we would like to add if there is enough interest in the application and if it is viable.

\n

Accessibility:

We made the decision to remove colors from the modal window theme to keep it simple and generic and accessible (high color contrast). The application has been tested with JAWS 2024 and is fully keyboard accessible and keeps assistive technology users informed of what is happening when interacting with the modal window. I'm always willing to make improvements to accessibility as a priority. Accessibility issues are treated as a bug and not a feature request.

\n

Implementation:

\n
    \n
  1. Publish your Rise course to either SCORM 1.2 or 2004
  2. \n
  3. Download the two files note.min.css and notes.min.js files to your computer.
  4. \n
  5. Extract your published Rise course to your computer and then copy the note.min.css and note.min.js files to the scormcontent\\lib folder
  6. \n
  7. Open the scormcontent\\index.html file in a simple text editor such as notepad and paste the following text just before the closing head element, which looks like this </head>. 

    <link type=\"text/css\" rel=\"stylesheet\" href=\"lib/notes.min.css\"> <script type=\"text/javascript\" src=\"lib/notes.min.js\" data-notes-per-page=\"5\"></script>
    \n

    It will look something like this:

    \n
    // Excerpt of scormcontent/index.html starts window.__loadEntry = __loadEntry window.__loadRemoteEntry = __loadRemoteEntry window.__loadJsonp = __loadJsonp window.__resolveJsonp = __resolveJsonp window.__fetchCourse = __fetchCourse })() </script> <link type=\"text/css\" rel=\"stylesheet\" href=\"lib/notes.min.css\"> <script type=\"text/javascript\" src=\"lib/notes.min.js\" data-notes-per-page=\"5\"></script> </head> <body> <div id=\"app\"></div> // Excerpt of scormcontent/index.html ends
  8. \n
  9. You can adjust the data-notes-per-page=\"5\" attribute to determine how many notes should be listed in the viewer, before the pagination (note navigation) kicks in.
  10. \n
  11. Save the scormcontent/index.html file
  12. \n
  13. It's important to get this bit right, as the LMS expects the imsmanifest file in the root of the zip file you are about to create. Navigate to the folder containing imsmanifest.xml and then select all (CTL+A) and then select archive/zip/compress depending on the software you use the terminology can be different. It must be a zip file though and the imasmanifest.xml file must be in the root of the zip file.

    \n

     

    \n
  14. \n
\n

Update (28 January 2025) Print functionality improvement

\n

After some user feedback, I have adjust the print functionality so that there is less chance of the student losing the course window during printing. When print is completed or cancelled, the print page closes and the user is return to the course window.

\n

Update (30 January 2025)

\n

Fix: Added functionality to handle learn.riseusercontent.com cmi.comments implementation. The cmi.comments implementation is incorrect on the LMS and requires the application to retrieve all comments and save to the LMS rather than appending to existing comments. This could cause memory issues if users add multiple long comments over time.

\n

CSS: Improved CSS for mobile view (using full height of the screen to display the application.

\n

Update (31 January 2025)

\n

Bug: There is a known issue with TalentLMS. TalentLMS does not persist SCORM 1.2 cmi.comments between sessions. All comments are disregarded at the end of the session. For this reason, we cannot support TalentLMS unless TalentLMS changes the functionality of the SCORM 1.2 cmi.comments.

\n

CSS:  Improved CSS for mobile view. Supporting devices with a minimum screen width of 355px wide.

\n

Update (07 March 2025)

\n

New configuration option: I have added a configuration option that allows you to determine where the note button should be inserted (instead of globally).

\n

In order to determine where the note button should be inserted, you need to follow these steps:

\n
    \n
  1. Grab a copy of the latest version of the JS and CSS files
  2. \n
  3. Wherever you would like to insert the note button, within the Rise authoring environment, simply add {RM.NOTES} to the top of the block, for example:

  4. \n
  5. Follow the Implementation instructions, outlined earlier in this post.
  6. \n
  7. When you come to add the script to the HTML file, you will need to add an extra data attribute to the <script> tag called data-notes-global and set the value as false.

    <script type=\"module\" src=\"lib/notes.min.js\" data-notes-global=\"false\"></script>
  8. \n
\n

Update (12 March 2025)

\n

BETA Distribution files, including the README.MD document, are available to download.

\n

This will be the last feature addition for a while now. Bug fixes and stabilisation will continue, but any new features will have to wait or can be requested via notes@rebusmedia.com.

\n

Prompt

\n

You can now add a prompt to the note when defining a notes button using the {RM.NOTES} directive. The prompt is defined as a configuration option in the following way {RM.NOTES PROMPT=\"Prompt text goes here.\"}. It would look something like this in the Rise author environment.

\n\n

This would ensure that a notes button is inserted on this block, and when selected, will display the text input, preceded by the prompt \"What should you include in your clinical notes?\".

\n\n

In order to use the prompt, you must set the global flag to false using the <script> tag as follows:

\n
<script type=\"module\" src=\"lib/notes.min.js\" data-notes-global=\"false\"></script>
\n

Note button position

\n

The note button default position is the top right of the target block. The button can now be positioned at the centre bottom of the target block. The position configuration can be used with the global flag set to true (buttons inserted automatically on blocks) or set to false (buttons only inserted where the {RM.NOTES} directive is present within the block.

\n
<script type=\"module\" src=\"lib/notes.min.js\" data-notes-button-centre-bottom=\"true\"></script>
\n

 

","body@stringLength":"16127","rawBody":"

 

\n

BETA distribution files Instructions for implementation further down the page under the heading BETA Version Release.

\n

I've been working on a Learning Journal for Rise. I have an BETA version I'd like to share on SCORM Cloud.

\n

The features we have included so far are:

\n
    \n
  1. Comments persisted between sessions (SCORM 1.2 & SCORM 2004 3rd and 4th Ed)
  2. \n
  3. Save comments, associated with blocks individual blocks
  4. \n
  5. Comments are organised into topics/pages
  6. \n
  7. Edit existing Comments
  8. \n
  9. Delete Comments
  10. \n
  11. Print comments (to printer, or PDF is you have the required software installed)
  12. \n
  13. Export comments to Word (*.doc)
  14. \n
  15. Pagination (If comments exceed a defined number, they are split into pages)
  16. \n
  17. Add the functionality to individual blocks, or globally.
  18. \n
\n

There are some things that needs to be finalised which will not take a great deal of work to complete.

\n
    \n
  1. Mobile compatibility
  2. \n
  3. WCAG 2.2 AA
  4. \n
\n

What I'm looking for is a bit of community input, as I know people have wanted this feature for quite some time. This is my best guess of how somebody might use a learning journal, but would love to hear any other examples of how it could function, or additional useful features that could be included.

\n

If you would like to check it out on SCORM Cloud. You can visit this URL: Rise Learning Journal on SCORM Cloud

\n

Update (3rd December 2024)

\n

I have continued to work on this project and it is now SCORM 2004 compatible. Again, it is using the cmi.comments_from_learner. Unfortunately I found a significant issue with the Articulate implementation of the SCORM 1.2 and 2004 comments. I am in communication with support after logging the issue. I am hoping I can convince them that the implementation is incorrect, and the base script is updated. In the meantime, I am applying a patch to the Articulate \"WriteComment\" function to ensure comments are stored correctly for SCORM 1.2 and SCORM 2004.

\n

I have also made some cosmetic changes and updated the CSS for the HTML to ensure the application picks up the current Rise module theme (colours, fonts etc).

\n

I've fixed a few bugs I have found along the way with regards to deleting journal entries, and editing journal entries when not on the page they originated from. This all appears to be working really well now.

\n

My next priority will be working on the CSS to ensure it is mobile compatible. Once all of the HTML and CSS is finalised, I'll then work on the accessibility. I've been implementing aria attributes as I go along, but there is still some testing and development to be done on that side of things.

\n

I will be looking to release this as a BETA to a handful of people early in the new year.

\n

Update (9th December 2024) Accessibility

\n

Started work on accessibility. Currently implementing and then will be looking to test using JAWS 2024 and NVDA over the xmas holiday period.

\n

On track for BETA release Jan 2025.

\n

Update (09 January 2025) Accessibility & refactoring

\n

Still working on accessibility and refactoring. There is a little more work than first forecast. Yes, I know, you've never heard that from a developer before. I'm 50/50 as to whether I can get this out in January. It will depend on other work commitments, but I will keep this post updated.

\n

I have decided to simplify the colour scheme and move away from using the defined \"branding\" colours inherited from Rise, as I was finding this a bit unpredictable with colour contrast, and so in the interest of ensuring the content has the best colour contrast, I'll be hard coding the CSS rather than using the CSS variables defined in Rise. I'll re-visit this in future.

\n

Looking at the code, I need some serious refactoring as I think I found some redundancies and so need to delete any unused code that I added and then abandoned.

\n

Oh, and Happy New Year.

\n

Update (24 January 2025) Accessibility & refactoring

\n

Almost ready for BETA release. Should be ready for release next Tuesday. Accessibility just about completed. I think I could spend another few days improving things, but I think this will be a good first release.

\n

BETA Version Release

\n

Contact: notes@rebusmedia.com

\n

Minimum requirements:

\n\n

Release Notes:

\n

This is a BETA release, and is provided as is without any warranties and It should be used with caution and fully tested for your use case before considering for production.

\n

If you do find bugs, please report them to notes@rebusmedia.com (include browser, LMS, device) and I'll release a fix as quickly as possible. This is a side project and so does come second to our day job which can be busy, and so you may need a certain level of patience. Fixes can be expedited for your use case through engagement of our services for time critical projects. 

\n

It has been tested on mobile, but not extensively (Google Pixel + iPhone).

\n

Win/Chrome has been the browser used for development, and testing has also been performed on Win/Firefox and Win/Edge.

\n

Features requests:

\n

If you require any features that deviate from the BETA version, they will be considered on their merit, but can only be guaranteed for your own implementation through engagement for our services.

\n

We have a long list of features that we would like to add if there is enough interest in the application and if it is viable.

\n

Accessibility:

We made the decision to remove colors from the modal window theme to keep it simple and generic and accessible (high color contrast). The application has been tested with JAWS 2024 and is fully keyboard accessible and keeps assistive technology users informed of what is happening when interacting with the modal window. I'm always willing to make improvements to accessibility as a priority. Accessibility issues are treated as a bug and not a feature request.

\n

Implementation:

\n
    \n
  1. Publish your Rise course to either SCORM 1.2 or 2004
  2. \n
  3. Download the two files note.min.css and notes.min.js files to your computer.
  4. \n
  5. Extract your published Rise course to your computer and then copy the note.min.css and note.min.js files to the scormcontent\\lib folder
  6. \n
  7. Open the scormcontent\\index.html file in a simple text editor such as notepad and paste the following text just before the closing head element, which looks like this </head>. 

    <link type=\"text/css\" rel=\"stylesheet\" href=\"lib/notes.min.css\"> <script type=\"text/javascript\" src=\"lib/notes.min.js\" data-notes-per-page=\"5\"></script>\n

    It will look something like this:

    \n// Excerpt of scormcontent/index.html starts window.__loadEntry = __loadEntry window.__loadRemoteEntry = __loadRemoteEntry window.__loadJsonp = __loadJsonp window.__resolveJsonp = __resolveJsonp window.__fetchCourse = __fetchCourse })() </script> <link type=\"text/css\" rel=\"stylesheet\" href=\"lib/notes.min.css\"> <script type=\"text/javascript\" src=\"lib/notes.min.js\" data-notes-per-page=\"5\"></script> </head> <body> <div id=\"app\"></div> // Excerpt of scormcontent/index.html ends
  8. \n
  9. You can adjust the data-notes-per-page=\"5\" attribute to determine how many notes should be listed in the viewer, before the pagination (note navigation) kicks in.
  10. \n
  11. Save the scormcontent/index.html file
  12. \n
  13. It's important to get this bit right, as the LMS expects the imsmanifest file in the root of the zip file you are about to create. Navigate to the folder containing imsmanifest.xml and then select all (CTL+A) and then select archive/zip/compress depending on the software you use the terminology can be different. It must be a zip file though and the imasmanifest.xml file must be in the root of the zip file.

    \n

     

    \n
  14. \n
\n

Update (28 January 2025) Print functionality improvement

\n

After some user feedback, I have adjust the print functionality so that there is less chance of the student losing the course window during printing. When print is completed or cancelled, the print page closes and the user is return to the course window.

\n

Update (30 January 2025)

\n

Fix: Added functionality to handle learn.riseusercontent.com cmi.comments implementation. The cmi.comments implementation is incorrect on the LMS and requires the application to retrieve all comments and save to the LMS rather than appending to existing comments. This could cause memory issues if users add multiple long comments over time.

\n

CSS: Improved CSS for mobile view (using full height of the screen to display the application.

\n

Update (31 January 2025)

\n

Bug: There is a known issue with TalentLMS. TalentLMS does not persist SCORM 1.2 cmi.comments between sessions. All comments are disregarded at the end of the session. For this reason, we cannot support TalentLMS unless TalentLMS changes the functionality of the SCORM 1.2 cmi.comments.

\n

CSS:  Improved CSS for mobile view. Supporting devices with a minimum screen width of 355px wide.

\n

Update (07 March 2025)

\n

New configuration option: I have added a configuration option that allows you to determine where the note button should be inserted (instead of globally).

\n

In order to determine where the note button should be inserted, you need to follow these steps:

\n
    \n
  1. Grab a copy of the latest version of the JS and CSS files
  2. \n
  3. Wherever you would like to insert the note button, within the Rise authoring environment, simply add {RM.NOTES} to the top of the block, for example:

  4. \n
  5. Follow the Implementation instructions, outlined earlier in this post.
  6. \n
  7. When you come to add the script to the HTML file, you will need to add an extra data attribute to the <script> tag called data-notes-global and set the value as false.

    <script type=\"module\" src=\"lib/notes.min.js\" data-notes-global=\"false\"></script>
  8. \n
\n

Update (12 March 2025)

\n

BETA Distribution files, including the README.MD document, are available to download.

\n

This will be the last feature addition for a while now. Bug fixes and stabilisation will continue, but any new features will have to wait or can be requested via notes@rebusmedia.com.

\n

Prompt

\n

You can now add a prompt to the note when defining a notes button using the {RM.NOTES} directive. The prompt is defined as a configuration option in the following way {RM.NOTES PROMPT=\"Prompt text goes here.\"}. It would look something like this in the Rise author environment.

\n\n

This would ensure that a notes button is inserted on this block, and when selected, will display the text input, preceded by the prompt \"What should you include in your clinical notes?\".

\n\n

In order to use the prompt, you must set the global flag to false using the <script> tag as follows:

\n<script type=\"module\" src=\"lib/notes.min.js\" data-notes-global=\"false\"></script>\n

Note button position

\n

The note button default position is the top right of the target block. The button can now be positioned at the centre bottom of the target block. The position configuration can be used with the global flag set to true (buttons inserted automatically on blocks) or set to false (buttons only inserted where the {RM.NOTES} directive is present within the block.

\n<script type=\"module\" src=\"lib/notes.min.js\" data-notes-button-centre-bottom=\"true\"></script>\n

 

","kudosSumWeight":10,"postTime":"2024-11-25T23:45:13.709-08:00","images":{"__typename":"AssociatedImageConnection","edges":[{"__typename":"AssociatedImageEdge","cursor":"MjUuM3wyLjF8b3wyNXxfTlZffDE","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLXBBQlozTw?revision=34\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuM3wyLjF8b3wyNXxfTlZffDI","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLUJUUVU1Yg?revision=34\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuM3wyLjF8b3wyNXxfTlZffDM","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLWpkdEFrWQ?revision=34\"}"}},{"__typename":"AssociatedImageEdge","cursor":"MjUuM3wyLjF8b3wyNXxfTlZffDQ","node":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLWphOEt3Sg?revision=34\"}"}}],"totalCount":4,"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":[]},"tags":{"__typename":"TagConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"TagEdge","cursor":"MjUuM3wyLjF8b3wxMHxfTlZffDE","node":{"__typename":"Tag","id":"tag:community","text":"community","time":"2016-11-08T04:16:53.000-08:00","lastActivityTime":null,"messagesCount":null,"followersCount":null}},{"__typename":"TagEdge","cursor":"MjUuM3wyLjF8b3wxMHxfTlZffDI","node":{"__typename":"Tag","id":"tag:e-learning development","text":"e-learning development","time":"2024-08-27T10:24:39.536-07:00","lastActivityTime":null,"messagesCount":null,"followersCount":null}},{"__typename":"TagEdge","cursor":"MjUuM3wyLjF8b3wxMHxfTlZffDM","node":{"__typename":"Tag","id":"tag:General E-Learning","text":"General E-Learning","time":"2021-03-01T06:45:41.000-08:00","lastActivityTime":null,"messagesCount":null,"followersCount":null}},{"__typename":"TagEdge","cursor":"MjUuM3wyLjF8b3wxMHxfTlZffDQ","node":{"__typename":"Tag","id":"tag:rise 360","text":"rise 360","time":"2022-08-18T05:21:50.000-07:00","lastActivityTime":null,"messagesCount":null,"followersCount":null}}]},"timeToRead":8,"currentRevision":{"__ref":"Revision:revision:1208000_34"},"latestVersion":null,"metrics":{"__typename":"MessageMetrics","views":1030},"visibilityScope":"PUBLIC","canonicalUrl":null,"seoTitle":null,"seoDescription":null,"isEscalated":null,"placeholder":false,"originalMessageForPlaceholder":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":[]}}},"archivalData":null,"searchSnippet":"...efault position is the top right of the target block. The button can now be positioned at the centre bottom of the target block. The position configuration can be used with the global flag set to true (b...","replies":{"__typename":"MessageConnection","edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMDgwMDM","node":{"__ref":"ForumReplyMessage:message:1208003"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMDgxNjU","node":{"__ref":"ForumReplyMessage:message:1208165"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMDg0MDI","node":{"__ref":"ForumReplyMessage:message:1208402"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTA1ODg","node":{"__ref":"ForumReplyMessage:message:1210588"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTE4MTE","node":{"__ref":"ForumReplyMessage:message:1211811"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTI1MzA","node":{"__ref":"ForumReplyMessage:message:1212530"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTM0NzU","node":{"__ref":"ForumReplyMessage:message:1213475"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTQwNDI","node":{"__ref":"ForumReplyMessage:message:1214042"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTQwNDg","node":{"__ref":"ForumReplyMessage:message:1214048"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTQxNzU","node":{"__ref":"ForumReplyMessage:message:1214175"}}],"pageInfo":{"__typename":"PageInfo","hasNextPage":true,"endCursor":"MjUuM3wyLjF8aXwxMHwzOToxfGludCwxMjA4MDAzLDEyMTQxNzU","hasPreviousPage":false,"startCursor":null}},"customFields":[]},"Conversation:conversation:1208000":{"__typename":"Conversation","id":"conversation:1208000","solved":false,"topic":{"__ref":"ForumTopicMessage:message:1208000"},"lastPostingActivityTime":"2025-03-12T19:29:10.434-07:00","lastPostTime":"2025-03-11T22:28:48.692-07:00","unreadReplyCount":85,"isSubscribed":false},"ModerationData:moderation_data:1208000":{"__typename":"ModerationData","id":"moderation_data:1208000","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLXBBQlozTw?revision=34\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLXBBQlozTw?revision=34","title":"2025-01-27_11-37-33.gif","associationType":"BODY","width":1196,"height":1008,"altText":""},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLUJUUVU1Yg?revision=34\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLUJUUVU1Yg?revision=34","title":"image.png","associationType":"BODY","width":446,"height":128,"altText":""},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLWpkdEFrWQ?revision=34\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLWpkdEFrWQ?revision=34","title":"image.png","associationType":"BODY","width":679,"height":139,"altText":""},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLWphOEt3Sg?revision=34\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bS0xMjA4MDAwLWphOEt3Sg?revision=34","title":"image.png","associationType":"BODY","width":779,"height":300,"altText":""},"Revision:revision:1208000_34":{"__typename":"Revision","id":"revision:1208000_34","lastEditTime":"2025-03-12T19:29:10.434-07:00"},"CachedAsset:theme:customTheme1-1744705661722":{"__typename":"CachedAsset","id":"theme:customTheme1-1744705661722","value":{"id":"customTheme1","animation":{"fast":"150ms","normal":"250ms","slow":"500ms","slowest":"750ms","function":"cubic-bezier(0.07, 0.91, 0.51, 1)","__typename":"AnimationThemeSettings"},"avatar":{"borderRadius":"50%","collections":["custom"],"__typename":"AvatarThemeSettings"},"basics":{"browserIcon":{"imageAssetName":"icon-1707332475463.png","imageLastModified":"1707332477323","__typename":"ThemeAsset"},"customerLogo":{"imageAssetName":"yes-1713449978626.svg","imageLastModified":"1713449980471","__typename":"ThemeAsset"},"maximumWidthOfPageContent":"1440px","oneColumnNarrowWidth":"800px","gridGutterWidthMd":"30px","gridGutterWidthXs":"10px","pageWidthStyle":"WIDTH_OF_BROWSER","__typename":"BasicsThemeSettings"},"buttons":{"borderRadiusSm":"100vw","borderRadius":"100vw","borderRadiusLg":"100vw","paddingY":"5px","paddingYLg":"7px","paddingYHero":"var(--lia-bs-btn-padding-y-lg)","paddingX":"55px","paddingXLg":"65px","paddingXHero":"78px","fontStyle":"NORMAL","fontWeight":"400","textTransform":"NONE","disabledOpacity":0.5,"primaryTextColor":"var(--lia-bs-white)","primaryTextHoverColor":"var(--lia-bs-white)","primaryTextActiveColor":"var(--lia-bs-white)","primaryBgColor":"var(--lia-bs-body-color)","primaryBgHoverColor":"var(--lia-bs-primary)","primaryBgActiveColor":"#36a5dd","primaryBorder":"1px solid transparent","primaryBorderHover":"1px solid transparent","primaryBorderActive":"1px solid transparent","primaryBorderFocus":"1px solid var(--lia-bs-white)","primaryBoxShadowFocus":"0 0 0 1px var(--lia-bs-body-color), 0 0 0 4px hsla(var(--lia-bs-body-color-h), var(--lia-bs-body-color-s), var(--lia-bs-body-color-l), 0.2)","secondaryTextColor":"var(--lia-bs-gray-900)","secondaryTextHoverColor":"hsl(var(--lia-bs-gray-900-h), var(--lia-bs-gray-900-s), calc(var(--lia-bs-gray-900-l) * 0.95))","secondaryTextActiveColor":"hsl(var(--lia-bs-gray-900-h), var(--lia-bs-gray-900-s), calc(var(--lia-bs-gray-900-l) * 0.9))","secondaryBgColor":"var(--lia-bs-white)","secondaryBgHoverColor":"var(--lia-bs-primary)","secondaryBgActiveColor":"#36a5dd","secondaryBorder":"1px solid var(--lia-btn-primary-bg-color)","secondaryBorderHover":"1px solid transparent","secondaryBorderActive":"1px solid transparent","secondaryBorderFocus":"1px solid transparent","secondaryBoxShadowFocus":"0 0 0 1px var(--lia-bs-body-color), 0 0 0 4px hsla(var(--lia-bs-body-color-h), var(--lia-bs-body-color-s), var(--lia-bs-body-color-l), 0.2)","tertiaryTextColor":"var(--lia-bs-body-color)","tertiaryTextHoverColor":"hsl(var(--lia-bs-body-color-h), var(--lia-bs-body-color-s), calc(var(--lia-bs-body-color-l) * 0.95))","tertiaryTextActiveColor":"hsl(var(--lia-bs-body-color-h), var(--lia-bs-body-color-s), calc(var(--lia-bs-body-color-l) * 0.9))","tertiaryBgColor":"transparent","tertiaryBgHoverColor":"transparent","tertiaryBgActiveColor":"hsla(var(--lia-bs-body-bg-h), var(--lia-bs-body-bg-s), var(--lia-bs-body-bg-l), 0.04)","tertiaryBorder":"1px solid transparent","tertiaryBorderHover":"1px solid hsla(var(--lia-bs-body-bg-h), var(--lia-bs-body-bg-s), var(--lia-bs-body-bg-l), 0.08)","tertiaryBorderActive":"1px solid transparent","tertiaryBorderFocus":"1px solid transparent","tertiaryBoxShadowFocus":"0 0 0 1px var(--lia-bs-body-color), 0 0 0 4px hsla(var(--lia-bs-body-color-h), var(--lia-bs-body-color-s), var(--lia-bs-body-color-l), 0.2)","destructiveTextColor":"#4D0000","destructiveTextHoverColor":"hsl(0, 100%, 14.3%)","destructiveTextActiveColor":"hsl(0, 100%, 13.6%)","destructiveBgColor":"#FFE5E5","destructiveBgHoverColor":"hsl(0, 100%, 91.1%)","destructiveBgActiveColor":"hsl(0, 100%, 87.3%)","destructiveBorder":"1px solid transparent","destructiveBorderHover":"1px solid transparent","destructiveBorderActive":"1px solid transparent","destructiveBorderFocus":"1px solid transparent","destructiveBoxShadowFocus":"0 0 0 1px var(--lia-bs-body-color), 0 0 0 4px hsla(var(--lia-bs-body-color-h), var(--lia-bs-body-color-s), var(--lia-bs-body-color-l), 0.2)","__typename":"ButtonsThemeSettings"},"border":{"color":"hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.08)","mainContent":"NONE","sideContent":"NONE","radiusSm":"6px","radius":"10px","radiusLg":"18px","radius50":"100vw","__typename":"BorderThemeSettings"},"boxShadow":{"xs":"0 0 0 1px hsla(var(--lia-bs-gray-900-h), var(--lia-bs-gray-900-s), var(--lia-bs-gray-900-l), 0.08), 0 3px 0 -1px hsla(var(--lia-bs-gray-900-h), var(--lia-bs-gray-900-s), var(--lia-bs-gray-900-l), 0.16)","sm":"0 2px 4px hsla(var(--lia-bs-gray-900-h), var(--lia-bs-gray-900-s), var(--lia-bs-gray-900-l), 0.12)","md":"0 5px 15px hsla(var(--lia-bs-gray-900-h), var(--lia-bs-gray-900-s), var(--lia-bs-gray-900-l), 0.3)","lg":"0 10px 30px hsla(var(--lia-bs-gray-900-h), var(--lia-bs-gray-900-s), var(--lia-bs-gray-900-l), 0.3)","__typename":"BoxShadowThemeSettings"},"cards":{"bgColor":"var(--lia-panel-bg-color)","borderRadius":"var(--lia-panel-border-radius)","boxShadow":"var(--lia-box-shadow-xs)","__typename":"CardsThemeSettings"},"chip":{"maxWidth":"300px","height":"30px","__typename":"ChipThemeSettings"},"coreTypes":{"defaultMessageLinkColor":"var(--lia-bs-primary)","defaultMessageLinkDecoration":"none","defaultMessageLinkFontStyle":"NORMAL","defaultMessageLinkFontWeight":"400","defaultMessageFontStyle":"NORMAL","defaultMessageFontWeight":"400","defaultMessageFontFamily":"var(--lia-bs-font-family-base)","forumColor":"#4099E2","forumFontFamily":"var(--lia-bs-font-family-base)","forumFontWeight":"var(--lia-default-message-font-weight)","forumLineHeight":"var(--lia-bs-line-height-base)","forumFontStyle":"var(--lia-default-message-font-style)","forumMessageLinkColor":"var(--lia-default-message-link-color)","forumMessageLinkDecoration":"var(--lia-default-message-link-decoration)","forumMessageLinkFontStyle":"var(--lia-default-message-link-font-style)","forumMessageLinkFontWeight":"var(--lia-default-message-link-font-weight)","forumSolvedColor":"#44BF90","blogColor":"#1CBAA0","blogFontFamily":"var(--lia-bs-font-family-base)","blogFontWeight":"var(--lia-default-message-font-weight)","blogLineHeight":"1.75","blogFontStyle":"var(--lia-default-message-font-style)","blogMessageLinkColor":"var(--lia-default-message-link-color)","blogMessageLinkDecoration":"var(--lia-default-message-link-decoration)","blogMessageLinkFontStyle":"var(--lia-default-message-link-font-style)","blogMessageLinkFontWeight":"var(--lia-default-message-link-font-weight)","tkbColor":"#4C6B90","tkbFontFamily":"var(--lia-bs-font-family-base)","tkbFontWeight":"var(--lia-default-message-font-weight)","tkbLineHeight":"1.75","tkbFontStyle":"var(--lia-default-message-font-style)","tkbMessageLinkColor":"var(--lia-default-message-link-color)","tkbMessageLinkDecoration":"var(--lia-default-message-link-decoration)","tkbMessageLinkFontStyle":"var(--lia-default-message-link-font-style)","tkbMessageLinkFontWeight":"var(--lia-default-message-link-font-weight)","qandaColor":"#4099E2","qandaFontFamily":"var(--lia-bs-font-family-base)","qandaFontWeight":"var(--lia-default-message-font-weight)","qandaLineHeight":"var(--lia-bs-line-height-base)","qandaFontStyle":"var(--lia-default-message-link-font-style)","qandaMessageLinkColor":"var(--lia-default-message-link-color)","qandaMessageLinkDecoration":"var(--lia-default-message-link-decoration)","qandaMessageLinkFontStyle":"var(--lia-default-message-link-font-style)","qandaMessageLinkFontWeight":"var(--lia-default-message-link-font-weight)","qandaSolvedColor":"#3FA023","ideaColor":"#00AEEF","ideaFontFamily":"var(--lia-bs-font-family-base)","ideaFontWeight":"var(--lia-default-message-font-weight)","ideaLineHeight":"var(--lia-bs-line-height-base)","ideaFontStyle":"var(--lia-default-message-font-style)","ideaMessageLinkColor":"var(--lia-default-message-link-color)","ideaMessageLinkDecoration":"var(--lia-default-message-link-decoration)","ideaMessageLinkFontStyle":"var(--lia-default-message-link-font-style)","ideaMessageLinkFontWeight":"var(--lia-default-message-link-font-weight)","contestColor":"#FCC845","contestFontFamily":"var(--lia-bs-font-family-base)","contestFontWeight":"var(--lia-default-message-font-weight)","contestLineHeight":"var(--lia-bs-line-height-base)","contestFontStyle":"var(--lia-default-message-link-font-style)","contestMessageLinkColor":"var(--lia-default-message-link-color)","contestMessageLinkDecoration":"var(--lia-default-message-link-decoration)","contestMessageLinkFontStyle":"ITALIC","contestMessageLinkFontWeight":"var(--lia-default-message-link-font-weight)","occasionColor":"#4E3AD0","occasionFontFamily":"var(--lia-bs-font-family-base)","occasionFontWeight":"var(--lia-default-message-font-weight)","occasionLineHeight":"var(--lia-bs-line-height-base)","occasionFontStyle":"var(--lia-default-message-font-style)","occasionMessageLinkColor":"var(--lia-default-message-link-color)","occasionMessageLinkDecoration":"var(--lia-default-message-link-decoration)","occasionMessageLinkFontStyle":"var(--lia-default-message-link-font-style)","occasionMessageLinkFontWeight":"var(--lia-default-message-link-font-weight)","grouphubColor":"#333333","categoryColor":"#949494","communityColor":"#FFFFFF","productColor":"#949494","__typename":"CoreTypesThemeSettings"},"colors":{"black":"#000000","white":"#FFFFFF","gray100":"#F7F7F7","gray200":"#F7F7F7","gray300":"#E8E8E8","gray400":"#D9D9D9","gray500":"#CCCCCC","gray600":"#949494","gray700":"#707070","gray800":"#545454","gray900":"#333333","dark":"#545454","light":"#F7F7F7","primary":"#00AEEF","secondary":"#333333","bodyText":"#000000","bodyBg":"#FFFFFF","info":"#00AEEF","success":"#029C29","warning":"#FFB82D","danger":"#00AEEF","alertSystem":"#FF6600","textMuted":"#707070","highlight":"#FFFCAD","outline":"var(--lia-bs-primary)","custom":["#00AEEF","#4E3AD5","#000000","#FFFFFF","#FF6602","#44BF90","#FF4C93","#74BB44","#FFB82D","#AA1A53","#FF0000","#027E20","#029C29","#DB0000","#FF0A0A","#4D0000","#FFE5E5","#36A5DD","#F1F3FD","#CBECFF"],"__typename":"ColorsThemeSettings"},"divider":{"size":"3px","marginLeft":"4px","marginRight":"4px","borderRadius":"50%","bgColor":"var(--lia-bs-gray-600)","bgColorActive":"var(--lia-bs-gray-600)","__typename":"DividerThemeSettings"},"dropdown":{"fontSize":"var(--lia-bs-font-size-sm)","borderColor":"var(--lia-bs-border-color)","borderRadius":"var(--lia-bs-border-radius-sm)","dividerBg":"var(--lia-bs-gray-300)","itemPaddingY":"5px","itemPaddingX":"20px","headerColor":"var(--lia-bs-gray-700)","__typename":"DropdownThemeSettings"},"email":null,"emoji":{"skinToneDefault":"#ffcd43","skinToneLight":"#fae3c5","skinToneMediumLight":"#e2cfa5","skinToneMedium":"#daa478","skinToneMediumDark":"#a78058","skinToneDark":"#5e4d43","__typename":"EmojiThemeSettings"},"heading":{"color":"var(--lia-bs-body-color)","fontFamily":"GTWalsheimProBold","fontStyle":"NORMAL","fontWeight":"700","h1FontSize":"48px","h2FontSize":"32px","h3FontSize":"22px","h4FontSize":"18px","h5FontSize":"22px","h6FontSize":"16px","lineHeight":"1.4","subHeaderFontSize":"14px","subHeaderFontWeight":"500","h1LetterSpacing":"normal","h2LetterSpacing":"normal","h3LetterSpacing":"normal","h4LetterSpacing":"normal","h5LetterSpacing":"normal","h6LetterSpacing":"normal","subHeaderLetterSpacing":"2px","h1FontWeight":"var(--lia-bs-headings-font-weight)","h2FontWeight":"var(--lia-bs-headings-font-weight)","h3FontWeight":"var(--lia-bs-headings-font-weight)","h4FontWeight":"var(--lia-bs-headings-font-weight)","h5FontWeight":"var(--lia-bs-headings-font-weight)","h6FontWeight":"var(--lia-bs-headings-font-weight)","__typename":"HeadingThemeSettings"},"icons":{"size10":"10px","size12":"12px","size14":"14px","size16":"16px","size20":"20px","size24":"24px","size30":"30px","size40":"40px","size50":"50px","size60":"60px","size80":"80px","size120":"120px","size160":"160px","__typename":"IconsThemeSettings"},"imagePreview":{"bgColor":"var(--lia-bs-gray-900)","titleColor":"var(--lia-bs-white)","controlColor":"var(--lia-bs-white)","controlBgColor":"var(--lia-bs-gray-800)","__typename":"ImagePreviewThemeSettings"},"input":{"borderColor":"var(--lia-bs-gray-600)","disabledColor":"var(--lia-bs-gray-600)","focusBorderColor":"var(--lia-bs-primary)","labelMarginBottom":"10px","btnFontSize":"var(--lia-bs-font-size-sm)","focusBoxShadow":"0 0 0 3px hsla(var(--lia-bs-primary-h), var(--lia-bs-primary-s), var(--lia-bs-primary-l), 0.2)","checkLabelMarginBottom":"2px","checkboxBorderRadius":"3px","borderRadiusSm":"100vw","borderRadius":"100vw","borderRadiusLg":"100vw","formTextMarginTop":"4px","textAreaBorderRadius":"18px","activeFillColor":"var(--lia-bs-primary)","__typename":"InputThemeSettings"},"loading":{"dotDarkColor":"hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.2)","dotLightColor":"hsla(var(--lia-bs-white-h), var(--lia-bs-white-s), var(--lia-bs-white-l), 0.5)","barDarkColor":"hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.06)","barLightColor":"hsla(var(--lia-bs-white-h), var(--lia-bs-white-s), var(--lia-bs-white-l), 0.4)","__typename":"LoadingThemeSettings"},"link":{"color":"var(--lia-bs-primary)","hoverColor":"hsl(var(--lia-bs-primary-h), var(--lia-bs-primary-s), calc(var(--lia-bs-primary-l) - 10%))","decoration":"none","hoverDecoration":"underline","__typename":"LinkThemeSettings"},"listGroup":{"itemPaddingY":"15px","itemPaddingX":"15px","borderColor":"var(--lia-bs-gray-300)","__typename":"ListGroupThemeSettings"},"modal":{"contentTextColor":"var(--lia-bs-body-color)","contentBg":"var(--lia-bs-white)","backgroundBg":"var(--lia-bs-black)","smSize":"440px","mdSize":"760px","lgSize":"1080px","backdropOpacity":0.3,"contentBoxShadowXs":"var(--lia-bs-box-shadow-sm)","contentBoxShadow":"var(--lia-bs-box-shadow)","headerFontWeight":"700","__typename":"ModalThemeSettings"},"navbar":{"position":"FIXED","background":{"attachment":null,"clip":null,"color":"var(--lia-bs-white)","imageAssetName":null,"imageLastModified":"0","origin":null,"position":"CENTER_CENTER","repeat":"NO_REPEAT","size":"COVER","__typename":"BackgroundProps"},"backgroundOpacity":0.8,"paddingTop":"15px","paddingBottom":"15px","borderBottom":"1px solid var(--lia-bs-border-color)","boxShadow":"var(--lia-bs-box-shadow-sm)","brandMarginRight":"30px","brandMarginRightSm":"10px","brandLogoHeight":"30px","linkGap":"10px","linkJustifyContent":"flex-start","linkPaddingY":"5px","linkPaddingX":"10px","linkDropdownPaddingY":"9px","linkDropdownPaddingX":"var(--lia-nav-link-px)","linkColor":"var(--lia-bs-body-color)","linkHoverColor":"var(--lia-bs-primary)","linkFontSize":"var(--lia-bs-font-size-sm)","linkFontStyle":"NORMAL","linkFontWeight":"400","linkTextTransform":"NONE","linkLetterSpacing":"normal","linkBorderRadius":"var(--lia-bs-border-radius-sm)","linkBgColor":"transparent","linkBgHoverColor":"transparent","linkBorder":"none","linkBorderHover":"none","linkBoxShadow":"none","linkBoxShadowHover":"none","linkTextBorderBottom":"none","linkTextBorderBottomHover":"none","dropdownPaddingTop":"10px","dropdownPaddingBottom":"15px","dropdownPaddingX":"10px","dropdownMenuOffset":"2px","dropdownDividerMarginTop":"10px","dropdownDividerMarginBottom":"10px","dropdownBorderColor":"hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.08)","controllerBgHoverColor":"hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.1)","controllerIconColor":"var(--lia-bs-body-color)","controllerIconHoverColor":"var(--lia-bs-body-color)","controllerTextColor":"var(--lia-nav-controller-icon-color)","controllerTextHoverColor":"var(--lia-nav-controller-icon-hover-color)","controllerHighlightColor":"hsla(30, 100%, 50%)","controllerHighlightTextColor":"var(--lia-yiq-light)","controllerBorderRadius":"var(--lia-border-radius-50)","hamburgerColor":"var(--lia-nav-controller-icon-color)","hamburgerHoverColor":"var(--lia-nav-controller-icon-color)","hamburgerBgColor":"transparent","hamburgerBgHoverColor":"transparent","hamburgerBorder":"none","hamburgerBorderHover":"none","collapseMenuMarginLeft":"20px","collapseMenuDividerBg":"var(--lia-nav-link-color)","collapseMenuDividerOpacity":0.16,"__typename":"NavbarThemeSettings"},"pager":{"textColor":"var(--lia-bs-link-color)","textFontWeight":"var(--lia-font-weight-md)","textFontSize":"var(--lia-bs-font-size-sm)","__typename":"PagerThemeSettings"},"panel":{"bgColor":"var(--lia-bs-white)","borderRadius":"var(--lia-bs-border-radius)","borderColor":"var(--lia-bs-border-color)","boxShadow":"none","__typename":"PanelThemeSettings"},"popover":{"arrowHeight":"8px","arrowWidth":"16px","maxWidth":"300px","minWidth":"100px","headerBg":"var(--lia-bs-white)","borderColor":"var(--lia-bs-border-color)","borderRadius":"var(--lia-bs-border-radius)","boxShadow":"0 0.5rem 1rem hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.15)","__typename":"PopoverThemeSettings"},"prism":{"color":"#000000","bgColor":"#f5f2f0","fontFamily":"var(--font-family-monospace)","fontSize":"var(--lia-bs-font-size-base)","fontWeightBold":"var(--lia-bs-font-weight-bold)","fontStyleItalic":"italic","tabSize":2,"highlightColor":"#b3d4fc","commentColor":"#62707e","punctuationColor":"#6f6f6f","namespaceOpacity":"0.7","propColor":"#990055","selectorColor":"#517a00","operatorColor":"#906736","operatorBgColor":"hsla(0, 0%, 100%, 0.5)","keywordColor":"#0076a9","functionColor":"#d3284b","variableColor":"#c14700","__typename":"PrismThemeSettings"},"rte":{"bgColor":"var(--lia-bs-white)","borderRadius":"var(--lia-panel-border-radius)","boxShadow":" var(--lia-panel-box-shadow)","customColor1":"#bfedd2","customColor2":"#fbeeb8","customColor3":"#f8cac6","customColor4":"#eccafa","customColor5":"#c2e0f4","customColor6":"#2dc26b","customColor7":"#f1c40f","customColor8":"#e03e2d","customColor9":"#b96ad9","customColor10":"#3598db","customColor11":"#169179","customColor12":"#e67e23","customColor13":"#ba372a","customColor14":"#843fa1","customColor15":"#236fa1","customColor16":"#ecf0f1","customColor17":"#ced4d9","customColor18":"#95a5a6","customColor19":"#7e8c8d","customColor20":"#34495e","customColor21":"#000000","customColor22":"#ffffff","defaultMessageHeaderMarginTop":"40px","defaultMessageHeaderMarginBottom":"24px","defaultMessageItemMarginTop":"0","defaultMessageItemMarginBottom":"16px","diffAddedColor":"hsla(170, 53%, 51%, 0.4)","diffChangedColor":"hsla(43, 97%, 63%, 0.4)","diffNoneColor":"hsla(0, 0%, 80%, 0.4)","diffRemovedColor":"hsla(9, 74%, 47%, 0.4)","specialMessageHeaderMarginTop":"40px","specialMessageHeaderMarginBottom":"24px","specialMessageItemMarginTop":"0","specialMessageItemMarginBottom":"16px","__typename":"RteThemeSettings"},"tags":{"bgColor":"var(--lia-bs-gray-200)","bgHoverColor":"var(--lia-bs-gray-400)","borderRadius":"var(--lia-bs-border-radius-sm)","color":"var(--lia-bs-body-color)","hoverColor":"var(--lia-bs-body-color)","fontWeight":"var(--lia-font-weight-md)","fontSize":"var(--lia-font-size-xxs)","textTransform":"UPPERCASE","letterSpacing":"0.5px","__typename":"TagsThemeSettings"},"toasts":{"borderRadius":"var(--lia-bs-border-radius)","paddingX":"12px","__typename":"ToastsThemeSettings"},"typography":{"fontFamilyBase":"Graphik","fontStyleBase":"NORMAL","fontWeightBase":"400","fontWeightLight":"300","fontWeightNormal":"400","fontWeightMd":"500","fontWeightBold":"700","letterSpacingSm":"normal","letterSpacingXs":"normal","lineHeightBase":"1.4","fontSizeBase":"18px","fontSizeXxs":"11px","fontSizeXs":"14px","fontSizeSm":"16px","fontSizeLg":"20px","fontSizeXl":"24px","smallFontSize":"14px","customFonts":[{"source":"SERVER","name":"Graphik","styles":[{"style":"NORMAL","weight":"400","__typename":"FontStyleData"},{"style":"NORMAL","weight":"700","__typename":"FontStyleData"},{"style":"NORMAL","weight":"500","__typename":"FontStyleData"},{"style":"NORMAL","weight":"600","__typename":"FontStyleData"}],"assetNames":["Graphik-normal-400.woff","Graphik-normal-700.woff","Graphik-normal-500.woff","Graphik-normal-600.woff"],"__typename":"CustomFont"},{"source":"SERVER","name":"GTWalsheimProBold","styles":[{"style":"NORMAL","weight":"700","__typename":"FontStyleData"}],"assetNames":["GTWalsheimProBold-normal-700.woff"],"__typename":"CustomFont"}],"__typename":"TypographyThemeSettings"},"unstyledListItem":{"marginBottomSm":"5px","marginBottomMd":"10px","marginBottomLg":"15px","marginBottomXl":"20px","marginBottomXxl":"25px","__typename":"UnstyledListItemThemeSettings"},"yiq":{"light":"#ffffff","dark":"#000000","__typename":"YiqThemeSettings"},"colorLightness":{"primaryDark":0.36,"primaryLight":0.74,"primaryLighter":0.89,"primaryLightest":0.95,"infoDark":0.39,"infoLight":0.72,"infoLighter":0.85,"infoLightest":0.93,"successDark":0.24,"successLight":0.62,"successLighter":0.8,"successLightest":0.91,"warningDark":0.39,"warningLight":0.68,"warningLighter":0.84,"warningLightest":0.93,"dangerDark":0.41,"dangerLight":0.72,"dangerLighter":0.89,"dangerLightest":0.95,"__typename":"ColorLightnessThemeSettings"},"localOverride":false,"__typename":"Theme"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Loading/LoadingDot-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Loading/LoadingDot-1744833252935","value":{"title":"Loading..."},"localOverride":false},"CachedAsset:quilt:articulate.prod:pages/forums/ForumMessagePage:board:discuss-1744833570041":{"__typename":"CachedAsset","id":"quilt:articulate.prod:pages/forums/ForumMessagePage:board:discuss-1744833570041","value":{"id":"ForumMessagePage","container":{"id":"Common","headerProps":{"backgroundImageProps":null,"backgroundColor":null,"addComponents":null,"removeComponents":["community.widget.bannerWidget"],"componentOrder":null,"__typename":"QuiltContainerSectionProps"},"headerComponentProps":{"community.widget.breadcrumbWidget":{"disableLastCrumbForDesktop":false}},"footerProps":null,"footerComponentProps":null,"items":[{"id":"message-list","layout":"MAIN_SIDE","bgColor":null,"showTitle":null,"showDescription":null,"textPosition":null,"textColor":null,"sectionEditLevel":null,"bgImage":null,"disableSpacing":null,"edgeToEdgeDisplay":null,"fullHeight":null,"showBorder":null,"__typename":"MainSideQuiltSection","columnMap":{"main":[{"id":"messages.widget.topicWithThreadedReplyListWidget","className":"lia-topic-with-replies","props":{"editLevel":"CONFIGURE"},"__typename":"QuiltComponent"}],"side":[{"id":"messages.widget.relatedContentWidget","className":null,"props":{"hideIfEmpty":true,"enablePagination":false,"useTitle":true,"listVariant":{"type":"unstyled","props":{"listItemSpacing":"xxl"}},"pageSize":10,"style":"compact","pagerVariant":{"type":"none"},"viewVariant":{"type":"inline","props":{"useRepliesCount":false,"useMedia":false,"useAuthorRank":false,"useNode":false,"boardIconSize":"24","useAuthorLoginLink":true,"useNodeLink":true,"usePreviewMedia":true,"timeStampType":"postTime","useTextBody":true,"useSolvedBadge":false,"subjectAs":"h6","renderPostTimeBeforeAuthor":true,"useAvatar":false,"useVideoPreview":false,"portraitClampBodyLines":3,"useCompactSpacing":true,"useTimeToRead":false,"useSpoilerFreeBody":true,"useKudosCount":false,"useViewCount":false,"useBody":false,"useTags":false,"clampSubjectLines":1,"useBoardIcon":true,"useMessageTimeLink":true,"useAuthorLogin":true}},"lazyLoad":false,"panelType":"standard"},"__typename":"QuiltComponent"},{"id":"messages.widget.messageListForNodeByRecentActivityWidget","className":null,"props":{"hideIfEmpty":true,"useTitle":true,"showTabs":false,"pageSize":5,"pagerVariant":{"type":"loadMore"},"style":"compact","viewVariant":{"type":"inline","props":{"useRepliesCount":false,"useMedia":false,"useAuthorRank":false,"useNode":false,"boardIconSize":"24","truncateBodyLength":-1,"useNodeLink":true,"usePreviewMedia":false,"timeStampType":"conversation.lastPostingActivityTime","avatarSize":"40","useTextBody":true,"useSolvedBadge":true,"subjectAs":"h6","renderPostTimeBeforeAuthor":true,"useAvatar":true,"useTimeToRead":false,"useSpoilerFreeBody":true,"useKudosCount":false,"useViewCount":false,"useBody":false,"useTags":false,"clampSubjectLines":1,"useBoardIcon":false,"useMessageTimeLink":true,"clampBodyLines":3,"useAuthorLogin":true,"useUnreadCount":false,"useNodeHoverCard":true,"useSearchSnippet":false}},"panelType":"divider","sorts":{"conversationLastPostingActivityTime":{"direction":"DESC"}}},"__typename":"QuiltComponent"}],"__typename":"MainSideSectionColumns"}}],"__typename":"QuiltContainer"},"__typename":"Quilt","localOverride":false},"localOverride":false},"CachedAsset:text:en_US-components/common/EmailVerification-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/common/EmailVerification-1744833252935","value":{"email.verification.title":"Email Verification Required","email.verification.message.update.email":"To participate in the community, you must first verify your email address. The verification email was sent to {email}. To change your email, visit My Settings.","email.verification.message.resend.email":"To participate in the community, you must first verify your email address. The verification email was sent to {email}. Resend email."},"localOverride":false},"CachedAsset:text:en_US-pages/forums/ForumMessagePage-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-pages/forums/ForumMessagePage-1744833252935","value":{"title":"{contextMessageSubject} | {communityTitle}","errorMissing":"This message cannot be found","name":"Forum Message Page","section.message-list.title":"Forum Discussion","archivedMessageTitle":"This Content Has Been Archived","section.IMfqow.title":"Example","section.section-1743380561890.description":"","section.wLfjRI.title":"Forum Discussion","section.section-1743380561890.title":"","section.IMfqow.description":""},"localOverride":false},"CachedAsset:quiltWrapper:articulate.prod:Common:1744705582671":{"__typename":"CachedAsset","id":"quiltWrapper:articulate.prod:Common:1744705582671","value":{"id":"Common","header":{"backgroundImageProps":{"assetName":null,"backgroundSize":"COVER","backgroundRepeat":"NO_REPEAT","backgroundPosition":"CENTER_CENTER","lastModified":null,"__typename":"BackgroundImageProps"},"backgroundColor":"var(--lia-bs-white)","items":[{"id":"custom.widget.GoogleTagManager","props":{"widgetVisibility":"signedInOrAnonymous","useTitle":false,"useBackground":false,"title":"","lazyLoad":false},"__typename":"QuiltComponent"},{"id":"community.widget.navbarWidget","props":{"showUserName":false,"showRegisterLink":true,"navbarVariantProps":{"logoHeight":40,"sideLinks":[],"backgroundColor":"var(--lia-bs-white)","showRegisterLink":true,"controllerHighlightColor":"#FF0137","linkAlignment":"left","backgroundImage":{"assetName":null,"backgroundSize":"COVER","lastModified":"","backgroundPosition":"CENTER_CENTER","backgroundRepeat":"NO_REPEAT"},"visualEffects":{"showBottomBorder":true,"showBottomShadow":true,"useStickyPosition":true},"linkFontSize":15,"controllerIconColor":"#333333","backgroundOpacity":0,"showUsername":false,"linkFontStyle":"BOLD","linkHighlightColor":"#000000","mainLinks":[{"linkLabel":"Learn","goesToPage":{"route":"CategoryPage","params":{"categoryId":"blogs"}},"children":[{"linkLabel":"Blog","goesToPage":{"route":"BlogBoardPage","params":{"boardId":"community-updates","categoryId":"blogs"}},"linkType":"INTERNAL"},{"linkLabel":"User Guides","goesToPage":{"route":"TkbBoardPage","params":{"boardId":"user-guides","categoryId":"top"}},"children":[],"linkType":"INTERNAL"}],"linkType":"INTERNAL"},{"linkLabel":"Discuss","goesToPage":{"route":"CategoryPage","params":{"categoryId":"forums"}},"children":[{"linkLabel":"Articulate Storyline","goesToPage":{"route":"ForumBoardPage","params":{"boardId":"support-forum","categoryId":"forums"}},"linkType":"INTERNAL"},{"linkLabel":"Rise 360","goesToPage":{"route":"ForumBoardPage","params":{"boardId":"rise-360","categoryId":"forums"}},"linkType":"INTERNAL"},{"linkLabel":"Review 360","goesToPage":{"route":"ForumBoardPage","params":{"boardId":"review-360","categoryId":"forums"}},"linkType":"INTERNAL"}],"linkType":"INTERNAL"},{"linkLabel":"Downloads","goesToPage":{"route":"TkbBoardPage","params":{"boardId":"downloads","categoryId":"top"}},"children":[],"linkType":"INTERNAL"}],"linkTextColor":"#000000","showSearchIcon":true,"boundaryPadding":{"top":20,"bottom":20},"highlightStyle":"color"},"links":{"sideLinks":[{"children":[],"linkType":"EXTERNAL","id":"Common-external-link","url":"https://www.articulate.com/","target":"BLANK"},{"children":[],"linkType":"EXTERNAL","id":"Common-external-link-5","url":"https://www.articulatestatus.com/","target":"BLANK"},{"children":[],"linkType":"EXTERNAL","id":"Common-external-link-2","url":"https://access.articulate.com/support","target":"BLANK"},{"children":[{"linkType":"EXTERNAL","id":"Common-external-link-3","url":"https://www.articulate.com/blog/","target":"BLANK"},{"linkType":"EXTERNAL","id":"Common-external-link-4","url":"https://www.articulate.com/resources/case-studies/","target":"BLANK"}],"linkType":"EXTERNAL","id":"Common-external-link-1","url":"https://www.articulate.com/resources/","target":"BLANK"}],"mainLinks":[{"children":[],"linkType":"INTERNAL","id":"Common-welcome-center-link","params":{"boardId":"welcome-center","categoryId":"top"},"routeName":"ForumBoardPage"},{"children":[{"linkType":"INTERNAL","id":"migrated-link-1","params":{"boardId":"user-guides","categoryId":"learn"},"routeName":"TkbBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-2","params":{"categoryId":"training-tutorials"},"routeName":"CategoryPage"},{"linkType":"INTERNAL","id":"Common-training-webinars-link","params":{"boardId":"training-webinars","categoryId":"training-tutorials"},"routeName":"EventBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-6","params":{"boardId":"e-learning-challenges","categoryId":"e-learning-challenges"},"routeName":"BlogBoardPage"}],"linkType":"INTERNAL","id":"migrated-link-0","params":{"categoryId":"learn"},"routeName":"CategoryPage"},{"children":[{"linkType":"INTERNAL","id":"migrated-link-3","params":{"boardId":"articles","categoryId":"learn"},"routeName":"BlogBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-4","params":{"boardId":"product-updates","categoryId":"learn"},"routeName":"BlogBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-5","params":{"boardId":"e-books","categoryId":"learn"},"routeName":"TkbBoardPage"}],"linkType":"INTERNAL","id":"Common-community-blog-link","params":{"categoryId":"community-blog"},"routeName":"CategoryPage"},{"children":[{"linkType":"INTERNAL","id":"migrated-link-8","params":{"boardId":"discuss","categoryId":"connect"},"routeName":"ForumBoardPage"},{"linkType":"INTERNAL","id":"Common-exchange-link","params":{"boardId":"exchange","categoryId":"connect"},"routeName":"ForumBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-9","params":{"boardId":"share-examples","categoryId":"connect"},"routeName":"ForumBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-13","params":{"boardId":"discover","categoryId":"top"},"routeName":"BlogBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-10","params":{"boardId":"share-ideas","categoryId":"connect"},"routeName":"ForumBoardPage"},{"linkType":"INTERNAL","id":"migrated-link-12","params":{"categoryId":"join-groups"},"routeName":"CategoryPage"}],"linkType":"INTERNAL","id":"migrated-link-7","params":{"categoryId":"connect"},"routeName":"CategoryPage"},{"children":[],"linkType":"INTERNAL","id":"migrated-link-11","params":{"boardId":"events","categoryId":"top"},"routeName":"EventBoardPage"}]},"className":"QuiltComponent_lia-component-edit-mode__lQ9Z6","style":{"boxShadow":"0","linkFontWeight":"500","controllerHighlightColor":"#AA1A53","dropdownDividerMarginBottom":"10px","hamburgerBorderHover":"none","linkFontSize":"16px","linkBoxShadowHover":"none","backgroundOpacity":0,"controllerBorderRadius":"var(--lia-border-radius-50)","hamburgerBgColor":"transparent","linkTextBorderBottom":"none","hamburgerColor":"var(--lia-nav-controller-icon-color)","brandLogoHeight":"40px","linkLetterSpacing":"normal","linkBgHoverColor":"transparent","collapseMenuDividerOpacity":null,"paddingBottom":"20px","dropdownPaddingBottom":"15px","dropdownMenuOffset":"2px","hamburgerBgHoverColor":"transparent","borderBottom":"0","hamburgerBorder":"none","dropdownPaddingX":"10px","brandMarginRightSm":"10px","linkBoxShadow":"none","linkJustifyContent":"center","linkColor":"#000000","collapseMenuDividerBg":null,"dropdownPaddingTop":"10px","controllerHighlightTextColor":"var(--lia-yiq-light)","background":{"imageAssetName":"","color":"var(--lia-bs-white)","size":"COVER","repeat":"NO_REPEAT","position":"CENTER_CENTER","imageLastModified":""},"linkBorderRadius":"var(--lia-bs-border-radius-sm)","linkHoverColor":"#000000","position":"FIXED","linkBorder":"none","linkTextBorderBottomHover":"2px solid #00AEEF","brandMarginRight":"30px","hamburgerHoverColor":"var(--lia-nav-controller-icon-color)","linkBorderHover":"none","collapseMenuMarginLeft":"20px","linkFontStyle":"NORMAL","linkPaddingX":"10px","paddingTop":"20px","linkPaddingY":"5px","linkTextTransform":"NONE","dropdownBorderColor":"hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.08)","controllerBgHoverColor":"hsla(var(--lia-bs-black-h), var(--lia-bs-black-s), var(--lia-bs-black-l), 0.1)","linkDropdownPaddingX":"var(--lia-nav-link-px)","linkBgColor":"transparent","linkDropdownPaddingY":"9px","controllerIconColor":"#000000","dropdownDividerMarginTop":"10px","linkGap":"10px","controllerIconHoverColor":"#000000"},"showSearchIcon":true},"__typename":"QuiltComponent"},{"id":"community.widget.breadcrumbWidget","props":{"backgroundColor":"transparent","linkHighlightColor":"var(--lia-bs-body-color)","visualEffects":{"showBottomBorder":false},"linkTextColor":"var(--lia-bs-gray-700)"},"__typename":"QuiltComponent"},{"id":"community.widget.bannerWidget","props":{"backgroundColor":"transparent","visualEffects":{"showBottomBorder":true},"backgroundOpacity":100,"backgroundImageProps":{"backgroundSize":"COVER","backgroundPosition":"CENTER_CENTER","backgroundRepeat":"NO_REPEAT"},"fontColor":"var(--lia-bs-body-color)"},"__typename":"QuiltComponent"},{"id":"custom.widget.TableStyles","props":{"widgetVisibility":"signedInOrAnonymous","useTitle":false,"useBackground":false,"title":"","lazyLoad":false},"__typename":"QuiltComponent"}],"__typename":"QuiltWrapperSection"},"footer":{"backgroundImageProps":{"assetName":null,"backgroundSize":"COVER","backgroundRepeat":"NO_REPEAT","backgroundPosition":"CENTER_CENTER","lastModified":null,"__typename":"BackgroundImageProps"},"backgroundColor":"transparent","items":[{"id":"custom.widget.Footer_2024","props":{"widgetVisibility":"signedInOrAnonymous","useTitle":true,"useBackground":false,"title":"","lazyLoad":false},"__typename":"QuiltComponent"},{"id":"custom.widget.GoogleTag","props":{"widgetVisibility":"signedInOrAnonymous","useTitle":false,"useBackground":false,"title":"","lazyLoad":false},"__typename":"QuiltComponent"}],"__typename":"QuiltWrapperSection"},"__typename":"QuiltWrapper","localOverride":false},"localOverride":false},"CachedAsset:text:en_US-components/common/ActionFeedback-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/common/ActionFeedback-1744833252935","value":{"joinedGroupHub.title":"Welcome","joinedGroupHub.message":"You are now a member of this group and are subscribed to updates.","groupHubInviteNotFound.title":"Invitation Not Found","groupHubInviteNotFound.message":"Sorry, we could not find your invitation to the group. The owner may have canceled the invite.","groupHubNotFound.title":"Group Not Found","groupHubNotFound.message":"The grouphub you tried to join does not exist. It may have been deleted.","existingGroupHubMember.title":"Already Joined","existingGroupHubMember.message":"You are already a member of this group.","accountLocked.title":"Account Locked","accountLocked.message":"Your account has been locked due to multiple failed attempts. Try again in {lockoutTime} minutes.","editedGroupHub.title":"Changes Saved","editedGroupHub.message":"Your group has been updated.","leftGroupHub.title":"Goodbye","leftGroupHub.message":"You are no longer a member of this group and will not receive future updates.","deletedGroupHub.title":"Deleted","deletedGroupHub.message":"The group has been deleted.","groupHubCreated.title":"Group Created","groupHubCreated.message":"{groupHubName} is ready to use","accountClosed.title":"Account Closed","accountClosed.message":"The account has been closed and you will now be redirected to the homepage","resetTokenExpired.title":"Reset Password Link has Expired","resetTokenExpired.message":"Try resetting your password again","invalidUrl.title":"Invalid URL","invalidUrl.message":"The URL you're using is not recognized. Verify your URL and try again.","accountClosedForUser.title":"Account Closed","accountClosedForUser.message":"{userName}'s account is closed","inviteTokenInvalid.title":"Invitation Invalid","inviteTokenInvalid.message":"Your invitation to the community has been canceled or expired.","inviteTokenError.title":"Invitation Verification Failed","inviteTokenError.message":"The url you are utilizing is not recognized. Verify your URL and try again","pageNotFound.title":"Access Denied","pageNotFound.message":"You do not have access to this area of the community or it doesn't exist","eventAttending.title":"Responded as Attending","eventAttending.message":"You'll be notified when there's new activity and reminded as the event approaches","eventInterested.title":"Responded as Interested","eventInterested.message":"You'll be notified when there's new activity and reminded as the event approaches","eventNotFound.title":"Event Not Found","eventNotFound.message":"The event you tried to respond to does not exist.","redirectToRelatedPage.title":"Showing Related Content","redirectToRelatedPageForBaseUsers.title":"Showing Related Content","redirectToRelatedPageForBaseUsers.message":"The content you are trying to access is archived","redirectToRelatedPage.message":"The content you are trying to access is archived","relatedUrl.archivalLink.flyoutMessage":"The content you are trying to access is archived View Archived Content"},"localOverride":false},"QueryVariables:TopicReplyList:message:1208000:34":{"__typename":"QueryVariables","id":"TopicReplyList:message:1208000:34","value":{"id":"message:1208000","first":10,"sorts":{"postTime":{"direction":"ASC"}},"repliesFirst":3,"repliesFirstDepthThree":1,"repliesSorts":{"postTime":{"direction":"ASC"}},"useAvatar":true,"useAuthorLogin":true,"useAuthorRank":true,"useBody":true,"useKudosCount":true,"useTimeToRead":false,"useMedia":false,"useReadOnlyIcon":false,"useRepliesCount":true,"useSearchSnippet":false,"useAcceptedSolutionButton":true,"useSolvedBadge":false,"useAttachments":false,"attachmentsFirst":5,"useTags":true,"useNodeAncestors":false,"useUserHoverCard":false,"useNodeHoverCard":false,"useModerationStatus":true,"usePreviewSubjectModal":false,"useMessageStatus":true}},"ROOT_MUTATION":{"__typename":"Mutation"},"CachedAsset:component:custom.widget.GoogleTagManager-en-us-1744833561139":{"__typename":"CachedAsset","id":"component:custom.widget.GoogleTagManager-en-us-1744833561139","value":{"component":{"id":"custom.widget.GoogleTagManager","template":{"id":"GoogleTagManager","markupLanguage":"HANDLEBARS","style":null,"texts":{},"defaults":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"components":[{"id":"custom.widget.GoogleTagManager","form":null,"config":null,"props":[],"__typename":"Component"}],"grouping":"CUSTOM","__typename":"ComponentTemplate"},"properties":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"form":null,"__typename":"Component","localOverride":false},"globalCss":null,"form":null},"localOverride":false},"CachedAsset:component:custom.widget.TableStyles-en-us-1744833561139":{"__typename":"CachedAsset","id":"component:custom.widget.TableStyles-en-us-1744833561139","value":{"component":{"id":"custom.widget.TableStyles","template":{"id":"TableStyles","markupLanguage":"HANDLEBARS","style":"table {\n\tth, td {\n\t\tpadding: .5em;\n\t}\n\ttr {\n\t\tborder: 1px solid var(--lia-bs-gray-400);\n\t\t&:nth-child(even) {\n\t\t\tbackground-color: var(--lia-bs-gray-100);\n\t\t}\n\t}\n\ttd {\n\t\tborder: inherit;\n\t}\n}","texts":{},"defaults":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"components":[{"id":"custom.widget.TableStyles","form":null,"config":null,"props":[],"__typename":"Component"}],"grouping":"CUSTOM","__typename":"ComponentTemplate"},"properties":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"form":null,"__typename":"Component","localOverride":false},"globalCss":{"css":"table {\n\tth, td {\n\t\tpadding: .5em;\n\t}\n\ttr {\n\t\tborder: 1px solid var(--lia-bs-gray-400);\n\t\t&:nth-child(even) {\n\t\t\tbackground-color: var(--lia-bs-gray-100);\n\t\t}\n\t}\n\ttd {\n\t\tborder: inherit;\n\t}\n}","tokens":{}},"form":null},"localOverride":false},"CachedAsset:component:custom.widget.Footer_2024-en-us-1744833561139":{"__typename":"CachedAsset","id":"component:custom.widget.Footer_2024-en-us-1744833561139","value":{"component":{"id":"custom.widget.Footer_2024","template":{"id":"Footer_2024","markupLanguage":"HANDLEBARS","style":".custom-footer {\n width: 100%;\n\tpadding: 0 var(--lia-bs-grid-gutter-width);\n\tmargin: 0 auto;\n\n @media (min-width: 576px) {\n max-width: 33.75rem;\n }\n\n @media (min-width: 768px) {\n max-width: 45rem;\n padding: 0 calc(var(--lia-bs-grid-gutter-width) * .5);\n }\n\n @media (min-width: 992px) {\n max-width: 60rem;\n }\n\n @media (min-width: 1260px) {\n\t max-width: var(--lia-container-max-width);\n }\n\n ol {\n list-style-type: decimal\n }\n\n ul {\n list-style-type: disc\n }\n\n ul,ol {\n list-style-position: outside\n }\n\n li {\n margin-bottom: .8em;\n position: relative\n }\n\n li ol,li ul {\n margin: .8em 0\n }\n\n nav ul,nav ol {\n list-style: none;\n list-style-image: none\n }\n\n a {\n color: var(--lia-bs-body-color);\n\n &:hover {\n color: var(--lia-bs-body-color);\n }\n }\n\n img {\n max-width: 100%;\n height: auto;\n }\n\n img.footer-logo {\n margin-bottom: 24px;\n\n @media (min-width: 1260px) {\n max-width: none;\n }\n }\n\n ul.list-inline {\n display: flex;\n flex-wrap: wrap;\n\n li {\n display: inline-block;\n margin-bottom: 0;\n\n + li {\n margin-left: 8px;\n }\n }\n }\n}\n\n.custom-footer .footer-link-stack {\n + .footer-link-stack {\n margin-top: 24px;\n \n @media (min-width: 768px) {\n margin-top: 0;\n }\n }\n\n ul {\n list-style: none;\n margin-bottom: 0;\n padding-left: 0;\n\n li:last-child {\n margin-bottom: 0;\n }\n\n + ul {\n margin-top: 8px;\n }\n }\n \n h3 {\n font-size: var(--lia-bs-font-size-base);\n font-weight: 600;\n }\n\n ul + h3 {\n margin-top: 24px;\n }\n\n ul.list-with-icons {\n margin-top: .4em;\n margin-bottom: 0;\n\n li {\n margin-bottom: 0;\n\n a {\n display: flex;\n background-size: 25px;\n background-repeat: no-repeat;\n background-position: left center;\n padding-bottom: .4em;\n padding-left: 33px;\n padding-top: .4em;\n }\n }\n }\n\n .link-social {\n width: 32px;\n height: 32px;\n border: 1px solid #eeeeee;\n background-color: var(--white);\n border-radius: 16px;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n}\n\n.footer-hr {\n hr {\n border-top: 1px solid #e4e4e4;\n margin-top: 32px;\n margin-bottom: 0;\n }\n\n [class*=\"grid__col--\"] {\n margin-bottom: 40px;\n }\n}\n\n.footer__brand {\n margin-bottom: 24px;\n margin-top: 60px;\n\n @media (min-width: 768px) and (max-width: 1199px) {\n margin-bottom: 0;\n margin-top: 36px;\n }\n\n ul.list-inline {\n margin-bottom: 0;\n\n @media (max-width: 767px) {\n justify-content: center;\n }\n\n li {\n margin-bottom: 12px;\n }\n\n li + li {\n margin-left: 0;\n }\n }\n .list-divided {\n padding-left: 0;\n\n li {\n margin-right: 12px;\n margin-left: 0;\n padding-right: 12px;\n border-right: 1px solid var(--lia-bs-body-color);\n line-height: 1;\n\n &:last-child {\n border-right: 0;\n margin-right: 0;\n }\n }\n\n @media (max-width: 767px) {\n text-align: center;\n\n .brand-line {\n width: 100%;\n border-right: 0;\n }\n }\n }\n}\n\n.grid__row {\n font-size: 0;\n line-height: 0;\n display: flex;\n flex-direction: column;\n\n @media (min-width: 768px) {\n flex-direction: row;\n flex-wrap: wrap;\n }\n\n @media (min-width: 1200px) {\n flex-wrap: nowrap;\n }\n}\n\n.grid__row--middled [class*='grid__col--'] {\n vertical-align: middle\n}\n\n.grid__row--middled:after {\n content: \"\";\n display: inline-block;\n height: 100%;\n vertical-align: middle\n}\n\n.grid__row--centered {\n text-align: center\n}\n\n.grid__row--justified {\n text-align: justify;\n text-justify: distribute\n}\n\n.grid__row--justified:after {\n content: \"\";\n display: inline-block;\n width: 100%\n}\n\n.grid__row--opposite {\n text-align: right\n}\n\n[class*='grid__col--'] {\n display: inline-block;\n padding: 0;\n font-size: 14px;\n line-height: 20px;\n text-align: left;\n vertical-align: top;\n\n @media (min-width: 768px) and (max-width: 1199px) {\n margin-bottom: 24px;\n }\n}\n\n/* 24 column grid system */\n@media (min-width: 768px) {\n .grid__col--1 {\n width: 4.16667%\n }\n\n .grid__col--2 {\n width: 8.33333%\n }\n\n .grid__col--3 {\n width: 12.5%\n }\n\n .grid__col--4 {\n width: 16.66667%\n }\n\n .grid__col--5 {\n width: 20.83333%\n }\n\n .grid__col--6 {\n width: 25%\n }\n\n .grid__col--7 {\n width: 29.16667%\n }\n\n .grid__col--8 {\n width: 33.33333%\n }\n\n .grid__col--9 {\n width: 37.5%\n }\n\n .grid__col--10 {\n width: 41.66667%\n }\n\n .grid__col--11 {\n width: 45.83333%\n }\n\n .grid__col--12 {\n width: 50%\n }\n\n .grid__col--13 {\n width: 54.16667%\n }\n\n .grid__col--14 {\n width: 58.33333%\n }\n\n .grid__col--15 {\n width: 62.5%\n }\n\n .grid__col--16 {\n width: 66.66667%\n }\n\n .grid__col--17 {\n width: 70.83333%\n }\n\n .grid__col--18 {\n width: 75%\n }\n\n .grid__col--19 {\n width: 79.16667%\n }\n\n .grid__col--20 {\n width: 83.33333%\n }\n\n .grid__col--21 {\n width: 87.5%\n }\n\n .grid__col--22 {\n width: 91.66667%\n }\n\n .grid__col--23 {\n width: 95.83333%\n }\n\n .grid__col--24 {\n width: 100%\n }\n\n .grid__col--full {\n width: 100%\n }\n\n .grid__col--half {\n width: 50%\n }\n\n .grid__col--third {\n width: 33.33333%\n }\n\n .grid__col--quarter {\n width: 25%\n }\n\n .grid__col--fifth {\n width: 20%\n }\n\n .grid__col--bleed {\n padding-left: 0;\n padding-right: 0\n }\n\n .grid__col--bleedLeft {\n padding-left: 0\n }\n\n .grid__col--bleedRight {\n padding-right: 0\n }\n\n .grid__col--group {\n display: inline-block;\n vertical-align: top;\n font-size: 0;\n line-height: 0\n }\n}\n\n@media (min-width: 768px) and (max-width: 1199px) {\n .grid__col-md--7 {\n width: 29.16667%\n }\n}\n\n.grid__col--offset1 {\n margin-left: 4.16667%\n}\n\n@media (min-width: 768px) {\n .grid__col-md-up--offset1 {\n margin-left: 4.16667%\n }\n}\n\n.grid__col--offset2 {\n margin-left: 8.33333%\n}","texts":{},"defaults":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"components":[{"id":"custom.widget.Footer_2024","form":null,"config":null,"props":[],"__typename":"Component"}],"grouping":"CUSTOM","__typename":"ComponentTemplate"},"properties":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"form":null,"__typename":"Component","localOverride":false},"globalCss":{"css":".custom_widget_Footer_2024_custom-footer_aax6c_1 {\n width: 100%;\n\tpadding: 0 var(--lia-bs-grid-gutter-width);\n\tmargin: 0 auto;\n\n @media (min-width: 576px) {\n max-width: 33.75rem;\n }\n\n @media (min-width: 768px) {\n max-width: 45rem;\n padding: 0 calc(var(--lia-bs-grid-gutter-width) * .5);\n }\n\n @media (min-width: 992px) {\n max-width: 60rem;\n }\n\n @media (min-width: 1260px) {\n\t max-width: var(--lia-container-max-width);\n }\n\n ol {\n list-style-type: decimal\n }\n\n ul {\n list-style-type: disc\n }\n\n ul,ol {\n list-style-position: outside\n }\n\n li {\n margin-bottom: .8em;\n position: relative\n }\n\n li ol,li ul {\n margin: .8em 0\n }\n\n nav ul,nav ol {\n list-style: none;\n list-style-image: none\n }\n\n a {\n color: var(--lia-bs-body-color);\n\n &:hover {\n color: var(--lia-bs-body-color);\n }\n }\n\n img {\n max-width: 100%;\n height: auto;\n }\n\n img.custom_widget_Footer_2024_footer-logo_aax6c_62 {\n margin-bottom: 1.5rem;\n\n @media (min-width: 1260px) {\n max-width: none;\n }\n }\n\n ul.custom_widget_Footer_2024_list-inline_aax6c_70 {\n display: flex;\n flex-wrap: wrap;\n\n li {\n display: inline-block;\n margin-bottom: 0;\n\n + li {\n margin-left: 0.5rem;\n }\n }\n }\n}\n\n.custom_widget_Footer_2024_custom-footer_aax6c_1 .custom_widget_Footer_2024_footer-link-stack_aax6c_85 {\n + .custom_widget_Footer_2024_footer-link-stack_aax6c_85 {\n margin-top: 1.5rem;\n \n @media (min-width: 768px) {\n margin-top: 0;\n }\n }\n\n ul {\n list-style: none;\n margin-bottom: 0;\n padding-left: 0;\n\n li:last-child {\n margin-bottom: 0;\n }\n\n + ul {\n margin-top: 0.5rem;\n }\n }\n \n h3 {\n font-size: var(--lia-bs-font-size-base);\n font-weight: 600;\n }\n\n ul + h3 {\n margin-top: 1.5rem;\n }\n\n ul.custom_widget_Footer_2024_list-with-icons_aax6c_117 {\n margin-top: .4em;\n margin-bottom: 0;\n\n li {\n margin-bottom: 0;\n\n a {\n display: flex;\n background-size: 25px;\n background-repeat: no-repeat;\n background-position: left center;\n padding-bottom: .4em;\n padding-left: 2.0625rem;\n padding-top: .4em;\n }\n }\n }\n\n .custom_widget_Footer_2024_link-social_aax6c_136 {\n width: 2rem;\n height: 2rem;\n border: 1px solid #eeeeee;\n background-color: var(--white);\n border-radius: 1rem;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n}\n\n.custom_widget_Footer_2024_footer-hr_aax6c_148 {\n hr {\n border-top: 1px solid #e4e4e4;\n margin-top: 2rem;\n margin-bottom: 0;\n }\n\n [class*=\"grid__col--\"] {\n margin-bottom: 2.5rem;\n }\n}\n\n.custom_widget_Footer_2024_footer__brand_aax6c_160 {\n margin-bottom: 1.5rem;\n margin-top: 3.75rem;\n\n @media (min-width: 768px) and (max-width: 1199px) {\n margin-bottom: 0;\n margin-top: 2.25rem;\n }\n\n ul.custom_widget_Footer_2024_list-inline_aax6c_70 {\n margin-bottom: 0;\n\n @media (max-width: 767px) {\n justify-content: center;\n }\n\n li {\n margin-bottom: 0.75rem;\n }\n\n li + li {\n margin-left: 0;\n }\n }\n .custom_widget_Footer_2024_list-divided_aax6c_184 {\n padding-left: 0;\n\n li {\n margin-right: 0.75rem;\n margin-left: 0;\n padding-right: 0.75rem;\n border-right: 1px solid var(--lia-bs-body-color);\n line-height: 1;\n\n &:last-child {\n border-right: 0;\n margin-right: 0;\n }\n }\n\n @media (max-width: 767px) {\n text-align: center;\n\n .custom_widget_Footer_2024_brand-line_aax6c_203 {\n width: 100%;\n border-right: 0;\n }\n }\n }\n}\n\n.custom_widget_Footer_2024_grid__row_aax6c_211 {\n font-size: 0;\n line-height: 0;\n display: flex;\n flex-direction: column;\n\n @media (min-width: 768px) {\n flex-direction: row;\n flex-wrap: wrap;\n }\n\n @media (min-width: 1200px) {\n flex-wrap: nowrap;\n }\n}\n\n.custom_widget_Footer_2024_grid__row--middled_aax6c_227 [class*='grid__col--'] {\n vertical-align: middle\n}\n\n.custom_widget_Footer_2024_grid__row--middled_aax6c_227:after {\n content: \"\";\n display: inline-block;\n height: 100%;\n vertical-align: middle\n}\n\n.custom_widget_Footer_2024_grid__row--centered_aax6c_238 {\n text-align: center\n}\n\n.custom_widget_Footer_2024_grid__row--justified_aax6c_242 {\n text-align: justify;\n text-justify: distribute\n}\n\n.custom_widget_Footer_2024_grid__row--justified_aax6c_242:after {\n content: \"\";\n display: inline-block;\n width: 100%\n}\n\n.custom_widget_Footer_2024_grid__row--opposite_aax6c_253 {\n text-align: right\n}\n\n[class*='grid__col--'] {\n display: inline-block;\n padding: 0;\n font-size: 0.875rem;\n line-height: 1.25rem;\n text-align: left;\n vertical-align: top;\n\n @media (min-width: 768px) and (max-width: 1199px) {\n margin-bottom: 1.5rem;\n }\n}\n\n/* 24 column grid system */\n\n@media (min-width: 768px) {\n .custom_widget_Footer_2024_grid__col--1_aax6c_272 {\n width: 4.16667%\n }\n\n .custom_widget_Footer_2024_grid__col--2_aax6c_276 {\n width: 8.33333%\n }\n\n .custom_widget_Footer_2024_grid__col--3_aax6c_280 {\n width: 12.5%\n }\n\n .custom_widget_Footer_2024_grid__col--4_aax6c_284 {\n width: 16.66667%\n }\n\n .custom_widget_Footer_2024_grid__col--5_aax6c_288 {\n width: 20.83333%\n }\n\n .custom_widget_Footer_2024_grid__col--6_aax6c_292 {\n width: 25%\n }\n\n .custom_widget_Footer_2024_grid__col--7_aax6c_296 {\n width: 29.16667%\n }\n\n .custom_widget_Footer_2024_grid__col--8_aax6c_300 {\n width: 33.33333%\n }\n\n .custom_widget_Footer_2024_grid__col--9_aax6c_304 {\n width: 37.5%\n }\n\n .custom_widget_Footer_2024_grid__col--10_aax6c_308 {\n width: 41.66667%\n }\n\n .custom_widget_Footer_2024_grid__col--11_aax6c_312 {\n width: 45.83333%\n }\n\n .custom_widget_Footer_2024_grid__col--12_aax6c_316 {\n width: 50%\n }\n\n .custom_widget_Footer_2024_grid__col--13_aax6c_320 {\n width: 54.16667%\n }\n\n .custom_widget_Footer_2024_grid__col--14_aax6c_324 {\n width: 58.33333%\n }\n\n .custom_widget_Footer_2024_grid__col--15_aax6c_328 {\n width: 62.5%\n }\n\n .custom_widget_Footer_2024_grid__col--16_aax6c_332 {\n width: 66.66667%\n }\n\n .custom_widget_Footer_2024_grid__col--17_aax6c_336 {\n width: 70.83333%\n }\n\n .custom_widget_Footer_2024_grid__col--18_aax6c_340 {\n width: 75%\n }\n\n .custom_widget_Footer_2024_grid__col--19_aax6c_344 {\n width: 79.16667%\n }\n\n .custom_widget_Footer_2024_grid__col--20_aax6c_348 {\n width: 83.33333%\n }\n\n .custom_widget_Footer_2024_grid__col--21_aax6c_352 {\n width: 87.5%\n }\n\n .custom_widget_Footer_2024_grid__col--22_aax6c_356 {\n width: 91.66667%\n }\n\n .custom_widget_Footer_2024_grid__col--23_aax6c_360 {\n width: 95.83333%\n }\n\n .custom_widget_Footer_2024_grid__col--24_aax6c_364 {\n width: 100%\n }\n\n .custom_widget_Footer_2024_grid__col--full_aax6c_368 {\n width: 100%\n }\n\n .custom_widget_Footer_2024_grid__col--half_aax6c_372 {\n width: 50%\n }\n\n .custom_widget_Footer_2024_grid__col--third_aax6c_376 {\n width: 33.33333%\n }\n\n .custom_widget_Footer_2024_grid__col--quarter_aax6c_380 {\n width: 25%\n }\n\n .custom_widget_Footer_2024_grid__col--fifth_aax6c_384 {\n width: 20%\n }\n\n .custom_widget_Footer_2024_grid__col--bleed_aax6c_388 {\n padding-left: 0;\n padding-right: 0\n }\n\n .custom_widget_Footer_2024_grid__col--bleedLeft_aax6c_393 {\n padding-left: 0\n }\n\n .custom_widget_Footer_2024_grid__col--bleedRight_aax6c_397 {\n padding-right: 0\n }\n\n .custom_widget_Footer_2024_grid__col--group_aax6c_401 {\n display: inline-block;\n vertical-align: top;\n font-size: 0;\n line-height: 0\n }\n}\n\n@media (min-width: 768px) and (max-width: 1199px) {\n .custom_widget_Footer_2024_grid__col-md--7_aax6c_410 {\n width: 29.16667%\n }\n}\n\n.custom_widget_Footer_2024_grid__col--offset1_aax6c_415 {\n margin-left: 4.16667%\n}\n\n@media (min-width: 768px) {\n .custom_widget_Footer_2024_grid__col-md-up--offset1_aax6c_420 {\n margin-left: 4.16667%\n }\n}\n\n.custom_widget_Footer_2024_grid__col--offset2_aax6c_425 {\n margin-left: 8.33333%\n}","tokens":{"custom-footer":"custom_widget_Footer_2024_custom-footer_aax6c_1","footer-logo":"custom_widget_Footer_2024_footer-logo_aax6c_62","list-inline":"custom_widget_Footer_2024_list-inline_aax6c_70","footer-link-stack":"custom_widget_Footer_2024_footer-link-stack_aax6c_85","list-with-icons":"custom_widget_Footer_2024_list-with-icons_aax6c_117","link-social":"custom_widget_Footer_2024_link-social_aax6c_136","footer-hr":"custom_widget_Footer_2024_footer-hr_aax6c_148","footer__brand":"custom_widget_Footer_2024_footer__brand_aax6c_160","list-divided":"custom_widget_Footer_2024_list-divided_aax6c_184","brand-line":"custom_widget_Footer_2024_brand-line_aax6c_203","grid__row":"custom_widget_Footer_2024_grid__row_aax6c_211","grid__row--middled":"custom_widget_Footer_2024_grid__row--middled_aax6c_227","grid__row--centered":"custom_widget_Footer_2024_grid__row--centered_aax6c_238","grid__row--justified":"custom_widget_Footer_2024_grid__row--justified_aax6c_242","grid__row--opposite":"custom_widget_Footer_2024_grid__row--opposite_aax6c_253","grid__col--1":"custom_widget_Footer_2024_grid__col--1_aax6c_272","grid__col--2":"custom_widget_Footer_2024_grid__col--2_aax6c_276","grid__col--3":"custom_widget_Footer_2024_grid__col--3_aax6c_280","grid__col--4":"custom_widget_Footer_2024_grid__col--4_aax6c_284","grid__col--5":"custom_widget_Footer_2024_grid__col--5_aax6c_288","grid__col--6":"custom_widget_Footer_2024_grid__col--6_aax6c_292","grid__col--7":"custom_widget_Footer_2024_grid__col--7_aax6c_296","grid__col--8":"custom_widget_Footer_2024_grid__col--8_aax6c_300","grid__col--9":"custom_widget_Footer_2024_grid__col--9_aax6c_304","grid__col--10":"custom_widget_Footer_2024_grid__col--10_aax6c_308","grid__col--11":"custom_widget_Footer_2024_grid__col--11_aax6c_312","grid__col--12":"custom_widget_Footer_2024_grid__col--12_aax6c_316","grid__col--13":"custom_widget_Footer_2024_grid__col--13_aax6c_320","grid__col--14":"custom_widget_Footer_2024_grid__col--14_aax6c_324","grid__col--15":"custom_widget_Footer_2024_grid__col--15_aax6c_328","grid__col--16":"custom_widget_Footer_2024_grid__col--16_aax6c_332","grid__col--17":"custom_widget_Footer_2024_grid__col--17_aax6c_336","grid__col--18":"custom_widget_Footer_2024_grid__col--18_aax6c_340","grid__col--19":"custom_widget_Footer_2024_grid__col--19_aax6c_344","grid__col--20":"custom_widget_Footer_2024_grid__col--20_aax6c_348","grid__col--21":"custom_widget_Footer_2024_grid__col--21_aax6c_352","grid__col--22":"custom_widget_Footer_2024_grid__col--22_aax6c_356","grid__col--23":"custom_widget_Footer_2024_grid__col--23_aax6c_360","grid__col--24":"custom_widget_Footer_2024_grid__col--24_aax6c_364","grid__col--full":"custom_widget_Footer_2024_grid__col--full_aax6c_368","grid__col--half":"custom_widget_Footer_2024_grid__col--half_aax6c_372","grid__col--third":"custom_widget_Footer_2024_grid__col--third_aax6c_376","grid__col--quarter":"custom_widget_Footer_2024_grid__col--quarter_aax6c_380","grid__col--fifth":"custom_widget_Footer_2024_grid__col--fifth_aax6c_384","grid__col--bleed":"custom_widget_Footer_2024_grid__col--bleed_aax6c_388","grid__col--bleedLeft":"custom_widget_Footer_2024_grid__col--bleedLeft_aax6c_393","grid__col--bleedRight":"custom_widget_Footer_2024_grid__col--bleedRight_aax6c_397","grid__col--group":"custom_widget_Footer_2024_grid__col--group_aax6c_401","grid__col-md--7":"custom_widget_Footer_2024_grid__col-md--7_aax6c_410","grid__col--offset1":"custom_widget_Footer_2024_grid__col--offset1_aax6c_415","grid__col-md-up--offset1":"custom_widget_Footer_2024_grid__col-md-up--offset1_aax6c_420","grid__col--offset2":"custom_widget_Footer_2024_grid__col--offset2_aax6c_425"}},"form":null},"localOverride":false},"CachedAsset:component:custom.widget.GoogleTag-en-us-1744833561139":{"__typename":"CachedAsset","id":"component:custom.widget.GoogleTag-en-us-1744833561139","value":{"component":{"id":"custom.widget.GoogleTag","template":{"id":"GoogleTag","markupLanguage":"HANDLEBARS","style":null,"texts":{},"defaults":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"components":[{"id":"custom.widget.GoogleTag","form":null,"config":null,"props":[],"__typename":"Component"}],"grouping":"CUSTOM","__typename":"ComponentTemplate"},"properties":{"config":{"applicablePages":[],"description":"","fetchedContent":null,"__typename":"ComponentConfiguration"},"props":[],"__typename":"ComponentProperties"},"form":null,"__typename":"Component","localOverride":false},"globalCss":null,"form":null},"localOverride":false},"CachedAsset:text:en_US-components/community/Breadcrumb-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/community/Breadcrumb-1744833252935","value":{"navLabel":"Breadcrumbs","dropdown":"Additional parent page navigation"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageBanner-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageBanner-1744833252935","value":{"messageMarkedAsSpam":"This post has been marked as spam","messageMarkedAsSpam@board:TKB":"This article has been marked as spam","messageMarkedAsSpam@board:BLOG":"This post has been marked as spam","messageMarkedAsSpam@board:FORUM":"This discussion has been marked as spam","messageMarkedAsSpam@board:OCCASION":"This event has been marked as spam","messageMarkedAsSpam@board:IDEA":"This idea has been marked as spam","manageSpam":"Manage Spam","messageMarkedAsAbuse":"This post has been marked as abuse","messageMarkedAsAbuse@board:TKB":"This article has been marked as abuse","messageMarkedAsAbuse@board:BLOG":"This post has been marked as abuse","messageMarkedAsAbuse@board:FORUM":"This discussion has been marked as abuse","messageMarkedAsAbuse@board:OCCASION":"This event has been marked as abuse","messageMarkedAsAbuse@board:IDEA":"This idea has been marked as abuse","preModCommentAuthorText":"This comment will be published as soon as it is approved","preModCommentModeratorText":"This comment is awaiting moderation","messageMarkedAsOther":"This post has been rejected due to other reasons","messageMarkedAsOther@board:TKB":"This article has been rejected due to other reasons","messageMarkedAsOther@board:BLOG":"This post has been rejected due to other reasons","messageMarkedAsOther@board:FORUM":"This discussion has been rejected due to other reasons","messageMarkedAsOther@board:OCCASION":"This event has been rejected due to other reasons","messageMarkedAsOther@board:IDEA":"This idea has been rejected due to other reasons","messageArchived":"This post was archived on {date}","relatedUrl":"View Related Content","relatedContentText":"Showing related content","archivedContentLink":"View Archived Content"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageView/MessageViewStandard-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageView/MessageViewStandard-1744833252935","value":{"anonymous":"Anonymous","author":"{messageAuthorLogin}","authorBy":"{messageAuthorLogin}","board":"{messageBoardTitle}","replyToUser":" to {parentAuthor}","showMoreReplies":"Show More","replyText":"Reply","repliesText":"Replies","markedAsSolved":"Marked as Solution","movedMessagePlaceholder.BLOG":"{count, plural, =0 {This comment has been} other {These comments have been} }","movedMessagePlaceholder.TKB":"{count, plural, =0 {This comment has been} other {These comments have been} }","movedMessagePlaceholder.FORUM":"{count, plural, =0 {This reply has been} other {These replies have been} }","movedMessagePlaceholder.IDEA":"{count, plural, =0 {This comment has been} other {These comments have been} }","movedMessagePlaceholder.OCCASION":"{count, plural, =0 {This comment has been} other {These comments have been} }","movedMessagePlaceholderUrlText":"moved.","messageStatus":"Status: ","statusChanged":"Status changed: {previousStatus} to {currentStatus}","statusAdded":"Status added: {status}","statusRemoved":"Status removed: {status}","labelExpand":"expand replies","labelCollapse":"collapse replies","unhelpfulReason.reason1":"Content is outdated","unhelpfulReason.reason2":"Article is missing information","unhelpfulReason.reason3":"Content is for a different Product","unhelpfulReason.reason4":"Doesn't match what I was searching for"},"localOverride":false},"CachedAsset:text:en_US-components/messages/ThreadedReplyList-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/ThreadedReplyList-1744833252935","value":{"title":"{count, plural, one{# Reply} other{# Replies}}","title@board:BLOG":"{count, plural, one{# Comment} other{# Comments}}","title@board:TKB":"{count, plural, one{# Comment} other{# Comments}}","title@board:IDEA":"{count, plural, one{# Comment} other{# Comments}}","title@board:OCCASION":"{count, plural, one{# Comment} other{# Comments}}","noRepliesTitle":"No Replies","noRepliesTitle@board:BLOG":"No Comments","noRepliesTitle@board:TKB":"No Comments","noRepliesTitle@board:IDEA":"No Comments","noRepliesTitle@board:OCCASION":"No Comments","noRepliesDescription":"Be the first to reply","noRepliesDescription@board:BLOG":"Be the first to comment","noRepliesDescription@board:TKB":"Be the first to comment","noRepliesDescription@board:IDEA":"Be the first to comment","noRepliesDescription@board:OCCASION":"Be the first to comment","messageReadOnlyAlert:BLOG":"Comments have been turned off for this post","messageReadOnlyAlert:TKB":"Comments have been turned off for this article","messageReadOnlyAlert:IDEA":"Comments have been turned off for this idea","messageReadOnlyAlert:FORUM":"Replies have been turned off for this discussion","messageReadOnlyAlert:OCCASION":"Comments have been turned off for this event"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageReplyCallToAction-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageReplyCallToAction-1744833252935","value":{"leaveReply":"Leave a reply...","leaveReply@board:BLOG@message:root":"Leave a comment...","leaveReply@board:TKB@message:root":"Leave a comment...","leaveReply@board:IDEA@message:root":"Leave a comment...","leaveReply@board:OCCASION@message:root":"Leave a comment...","repliesTurnedOff.FORUM":"Replies are turned off for this topic","repliesTurnedOff.BLOG":"Comments are turned off for this topic","repliesTurnedOff.TKB":"Comments are turned off for this topic","repliesTurnedOff.IDEA":"Comments are turned off for this topic","repliesTurnedOff.OCCASION":"Comments are turned off for this topic","infoText":"Stop poking me!"},"localOverride":false},"CachedAsset:text:en_US-components/messages/RelatedContentWidget-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/RelatedContentWidget-1744833252935","value":{"title":"Related Content","emptyDescription":"No content to show"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageListForNodeByRecentActivityWidget-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageListForNodeByRecentActivityWidget-1744833252935","value":{"title@userScope:other":"Recent Content","title@userScope:self":"Contributions","title@board:FORUM@userScope:other":"Recent Discussions","title@board:BLOG@userScope:other":"Recent Blogs","emptyDescription":"No content to show","MessageListForNodeByRecentActivityWidgetEditor.nodeScope.label":"Scope","title@instance:ZvyUCy":"Most Recent","title@instance:1707846530344":"Conversations happening now","title@instance:1739575249929":"Archive","title@instance:1714488527325":"Recent Discussions","title@instance:1706711291349":"All Discussions","title@instance:VSkfRi":"Latest Examples","title@instance:1714488985590":"Newest Articles","title@instance:RMdoRw":"Articulate 360","title@instance:1741381041212":"Recent Introductions","title@instance:1699309009420":"All Discussions","title@instance:lEVAOo":"Storyline ","title@instance:1710185086146":"Help Others","title@instance:Xxobbq":"Articulate 360","title@instance:NpCDGP":"Articulate 360","title@instance:1739574739557":"Archive","title@instance:kqkevC":"Archive","title@instance:1708474656044":"Storyline ","title@instance:xLLSjm":"Archive","title@instance:vcoHbL":"All E-Learning Challenges","title@instance:1708524106229":"Studio 360","title@instance:1743005534829":"Recent Submissions","title@instance:1725460485728":"Recent Product Updates","title@instance:1710442232647":"Projects","title@instance:1709734834038":"All Challenges","title@instance:1738765561478":"Previous Tips & Tricks","title@instance:1714054755842":"Join a challenge","title@instance:1739573273584":"Archive","title@instance:1714488724456":"Join a Challenge","title@instance:1713899183346":"Featured Tutorial","title@instance:1711573126191":"Have an Idea? Share it with Us!","title@instance:YqcZZo":"Articulate 360","title@instance:1739574463817":"Archive","title@instance:QDzbgX":"Most Recent","title@instance:1709735255357":"Recaps","title@instance:1738768304153":"Recent Tips & Tricks","title@instance:cIEamF":"Most Recent","title@instance:1738858551617":"Archive","title@instance:1739575591629":"Archive","title@instance:1710185242694":"Get Inspired","title@instance:qUtfiY":"Articulate 360","title@instance:obdvcl":"Most Recent","title@instance:lAGrsn":"All Examples and Downloads","title@instance:1706713700018":"Recent Discussions","title@instance:zNWKaz":"Archive","title@instance:1714164286062":"Discuss","title@instance:1710185577884":"Latest Examples","title@instance:1725718372499":"Recent Updates","title@instance:1724680829536":"Discussions","title@instance:DFRZfd":"Articulate 360","title@instance:iPTcmo":"Archive","title@instance:PiICyd":"Newest","title@instance:mSZqMv":"Newest","title@instance:yVwpbC":"","title@instance:1739573660871":"Archive","title@instance:1738706092189":"Recent Posts","title@instance:1692888582733":"Featured Blogs","title@instance:1739574280328":"Archive","title@instance:izlekO":"Newewst","title@instance:1724679624046":"Discussions","title@instance:1741968196384":"Tips & Tricks","title@instance:1733520341799":"Recent Updates","title@instance:1739574057369":"Archive","title@instance:GZBHHL":"Most Recent","title@instance:1707245656473":"All Activity","title@instance:1709743420575":"Get Inspired","title@instance:BvWgAB":"Newest Articles","title@instance:XjcSMt":"All Discussions","title@instance:ndGPYw":"Discuss","title@instance:1742335819119":"Archive","title@instance:cYpvLP":"Articulate 360","title@instance:1706903088508":"Help Others","title@instance:1739574911515":"Archive","title@instance:QwMMqe":"This Week's Challenge","title@instance:YraixK":"Everything","title@instance:wePydP":"Recent Discussions","title@instance:ErXgTF":"Articulate 360","title@instance:1710184556305":"Get Inspired","title@instance:1708525179181":"Rise 360 ","title@instance:1707781116957":"","title@instance:1714499256147":"This Week's Challenge","title@instance:FmAgYs":"All Tutorials","title@instance:lstAQM":"Most Recent","title@instance:1711027838310":"Newest","title@instance:hmRLIQ":"Studio 360","title@instance:1710185499597":"Join A Challenge","title@instance:1714054899572":"Get Inspired","title@instance:1707245505334":"Featured Work","title@instance:1741699528515":"Introductions","title@instance:1699306493859":"Most Recent","title@instance:1739574375340":"Archive","title@instance:KFlMQC":"Tutorials","title@instance:sfHoXR":"Recent Updates","title@instance:1710184481343":"Grow Your Skills","title@instance:SgvePz":"Recent Introductions","title@instance:1737737989450":"Administraion","title@instance:1707328529472":"Articulate 360","title@instance:1724761095523":"Latest Product Updates","title@instance:zKqoJx":"Articulate 360"},"localOverride":false},"Category:category:learn":{"__typename":"Category","id":"category:learn","categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Blog:board:articles":{"__typename":"Blog","id":"board:articles","blogPolicies":{"__typename":"BlogPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Tkb:board:e-books":{"__typename":"Tkb","id":"board:e-books","tkbPolicies":{"__typename":"TkbPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Tkb:board:user-guides":{"__typename":"Tkb","id":"board:user-guides","tkbPolicies":{"__typename":"TkbPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Blog:board:product-updates":{"__typename":"Blog","id":"board:product-updates","blogPolicies":{"__typename":"BlogPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Blog:board:e-learning-challenges":{"__typename":"Blog","id":"board:e-learning-challenges","blogPolicies":{"__typename":"BlogPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Blog:board:discover":{"__typename":"Blog","id":"board:discover","blogPolicies":{"__typename":"BlogPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Category:category:join-groups":{"__typename":"Category","id":"category:join-groups","categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Forum:board:share-examples":{"__typename":"Forum","id":"board:share-examples","forumPolicies":{"__typename":"ForumPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Occasion:board:events":{"__typename":"Occasion","id":"board:events","boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"occasionPolicies":{"__typename":"OccasionPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Forum:board:share-ideas":{"__typename":"Forum","id":"board:share-ideas","forumPolicies":{"__typename":"ForumPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Category:category:training-tutorials":{"__typename":"Category","id":"category:training-tutorials","categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"entityType":"CATEGORY","displayId":"training-tutorials","nodeType":"category","depth":2,"title":"Training and Tutorials","shortTitle":"Training and Tutorials"},"Occasion:board:training-webinars":{"__typename":"Occasion","id":"board:training-webinars","boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"occasionPolicies":{"__typename":"OccasionPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Forum:board:welcome-center":{"__typename":"Forum","id":"board:welcome-center","forumPolicies":{"__typename":"ForumPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Category:category:community-blog":{"__typename":"Category","id":"category:community-blog","categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Forum:board:exchange":{"__typename":"Forum","id":"board:exchange","forumPolicies":{"__typename":"ForumPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}},"boardPolicies":{"__typename":"BoardPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Conversation:conversation:1224497":{"__typename":"Conversation","id":"conversation:1224497","topic":{"__typename":"ForumTopicMessage","uid":1224497},"lastPostingActivityTime":"2025-04-21T06:38:16.635-07:00","solved":false},"ForumTopicMessage:message:1224497":{"__typename":"ForumTopicMessage","subject":"Numeric-entry fields as pick-many assessment possible...?","conversation":{"__ref":"Conversation:conversation:1224497"},"id":"message:1224497","revisionNum":1,"uid":1224497,"depth":0,"board":{"__ref":"Forum:board:discuss"},"author":{"__typename":"User","uid":1536478,"login":"Prakash_IQMD","registrationData":{"__typename":"RegistrationData","status":null},"deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C4980e69e-0bb0-4079-8479-efcccc1388d2"}},"metrics":{"__typename":"MessageMetrics","views":42},"postTime":"2025-04-20T22:15:40.799-07:00","lastPublishTime":"2025-04-20T22:15:40.799-07:00","readOnly":false},"Conversation:conversation:1224504":{"__typename":"Conversation","id":"conversation:1224504","topic":{"__typename":"ForumTopicMessage","uid":1224504},"lastPostingActivityTime":"2025-04-21T05:51:11.527-07:00","solved":false},"ForumTopicMessage:message:1224504":{"__typename":"ForumTopicMessage","subject":"Reach 360 SSO Configuration - 409 Conflict Error with IDP Issuer URL (Expired Account Conflict)","conversation":{"__ref":"Conversation:conversation:1224504"},"id":"message:1224504","revisionNum":1,"uid":1224504,"depth":0,"board":{"__ref":"Forum:board:discuss"},"author":{"__typename":"User","uid":1539999,"login":"minakoto","registrationData":{"__typename":"RegistrationData","status":null},"deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C129654d8-4c93-4d6a-a753-e3b9f5fe0286"}},"metrics":{"__typename":"MessageMetrics","views":13},"postTime":"2025-04-21T02:50:09.263-07:00","lastPublishTime":"2025-04-21T02:50:09.263-07:00","readOnly":false},"Conversation:conversation:1223154":{"__typename":"Conversation","id":"conversation:1223154","topic":{"__typename":"ForumTopicMessage","uid":1223154},"lastPostingActivityTime":"2025-04-21T05:44:09.529-07:00","solved":true},"ForumTopicMessage:message:1223154":{"__typename":"ForumTopicMessage","subject":"Slow, Unresponsive, lag","conversation":{"__ref":"Conversation:conversation:1223154"},"id":"message:1223154","revisionNum":1,"uid":1223154,"depth":0,"board":{"__ref":"Forum:board:discuss"},"author":{"__typename":"User","uid":374401,"login":"DuaneReimer","registrationData":{"__typename":"RegistrationData","status":null},"deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C02576983-776a-4be1-b14b-e2d6142c341e"}},"metrics":{"__typename":"MessageMetrics","views":474},"postTime":"2025-04-08T14:33:17.631-07:00","lastPublishTime":"2025-04-08T14:33:17.631-07:00","readOnly":false},"Conversation:conversation:1224472":{"__typename":"Conversation","id":"conversation:1224472","topic":{"__typename":"ForumTopicMessage","uid":1224472},"lastPostingActivityTime":"2025-04-21T05:23:22.806-07:00","solved":true},"ForumTopicMessage:message:1224472":{"__typename":"ForumTopicMessage","subject":"Slide numbering issue","conversation":{"__ref":"Conversation:conversation:1224472"},"id":"message:1224472","revisionNum":1,"uid":1224472,"depth":0,"board":{"__ref":"Forum:board:discuss"},"author":{"__typename":"User","uid":274568,"login":"ShannonMajors-6","registrationData":{"__typename":"RegistrationData","status":null},"deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://community.articulate.com/t5/s/rwgqn69235/images/dS0yNzQ1NjgtbDV3bjJQ?image-coordinates=0%2C39%2C433%2C472"}},"metrics":{"__typename":"MessageMetrics","views":26},"postTime":"2025-04-19T07:46:00.345-07:00","lastPublishTime":"2025-04-19T07:46:00.345-07:00","readOnly":false},"Conversation:conversation:1224492":{"__typename":"Conversation","id":"conversation:1224492","topic":{"__typename":"ForumTopicMessage","uid":1224492},"lastPostingActivityTime":"2025-04-21T04:15:28.578-07:00","solved":false},"ForumTopicMessage:message:1224492":{"__typename":"ForumTopicMessage","subject":"Need Help Displaying Transcripts from Notes via Top Bar Tab","conversation":{"__ref":"Conversation:conversation:1224492"},"id":"message:1224492","revisionNum":1,"uid":1224492,"depth":0,"board":{"__ref":"Forum:board:discuss"},"author":{"__typename":"User","uid":1001971,"login":"PoojaDwivedi-4d","registrationData":{"__typename":"RegistrationData","status":null},"deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C9594e447-070c-417b-a99d-23dab80b0caa"}},"metrics":{"__typename":"MessageMetrics","views":24},"postTime":"2025-04-20T10:16:31.834-07:00","lastPublishTime":"2025-04-20T10:16:31.834-07:00","readOnly":false},"Rank:rank:2":{"__typename":"Rank","id":"rank:2","position":1,"name":"Staff","color":"00AEEF","icon":null,"rankStyle":"FILLED"},"User:user:914631":{"__typename":"User","id":"user:914631","uid":914631,"login":"TomKuhlmann","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2010-10-22T04:41:34.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.articulate.com/t5/s/rwgqn69235/images/dS05MTQ2MzEtUTBHUDdD?image-coordinates=0%2C0%2C532%2C532"},"rank":{"__ref":"Rank:rank:2"},"messagesCount":364,"kudosGivenCount":76,"kudosReceivedCount":1632,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":4,"entityType":"USER","eventPath":"community:rwgqn69235/user:914631"},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjUteWp4cDJX?image-coordinates=0%2C0%2C1920%2C1920\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjUteWp4cDJX?image-coordinates=0%2C0%2C1920%2C1920","mimeType":"image/png"},"Tkb:board:instructional-design":{"__typename":"Tkb","id":"board:instructional-design","entityType":"TKB","displayId":"instructional-design","nodeType":"board","depth":3,"conversationStyle":"TKB","title":"General Course Design","shortTitle":"General Course Design","parent":{"__ref":"Category:category:training-tutorials"},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjUteWp4cDJX?image-coordinates=0%2C0%2C1920%2C1920\"}"},"description":"Learn to build better courses.","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:instructional-design/"},"TkbTopicMessage:message:1215966":{"__typename":"TkbTopicMessage","uid":1215966,"subject":"An Introduction to E-Learning Course Design","id":"message:1215966","revisionNum":1,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:instructional-design"},"conversation":{"__ref":"Conversation:conversation:1215966"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1215966"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" Simplify the design process and work through the three main considerations of course design: content, look and feel, and interactivity. \n \n   ","postTime":"2025-02-07T06:32:32.546-08:00","lastPublishTime":"2025-02-07T06:32:32.546-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":575},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:instructional-design/message:1215966"},"Conversation:conversation:1215966":{"__typename":"Conversation","id":"conversation:1215966","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1215966"},"lastPostingActivityTime":"2025-02-07T06:32:32.546-08:00","lastPostTime":"2025-02-07T06:32:32.546-08:00"},"ModerationData:moderation_data:1215966":{"__typename":"ModerationData","id":"moderation_data:1215966","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1215966":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1215966","relatedMessage":{"__ref":"TkbTopicMessage:message:1215966"}},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xNjUtVXdLTTg2?image-coordinates=0%2C0%2C1920%2C1920\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xNjUtVXdLTTg2?image-coordinates=0%2C0%2C1920%2C1920","mimeType":"image/png"},"Tkb:board:translation-best-practices":{"__typename":"Tkb","id":"board:translation-best-practices","entityType":"TKB","displayId":"translation-best-practices","nodeType":"board","depth":3,"conversationStyle":"TKB","title":"Translation Best Practices","shortTitle":"Translation Best Practices","parent":{"__ref":"Category:category:training-tutorials"},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xNjUtVXdLTTg2?image-coordinates=0%2C0%2C1920%2C1920\"}"},"description":"Learn to translate courses beyond the tools","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:translation-best-practices/"},"TkbTopicMessage:message:1222679":{"__typename":"TkbTopicMessage","uid":1222679,"subject":"What is E-Learning Localization","id":"message:1222679","revisionNum":6,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:translation-best-practices"},"conversation":{"__ref":"Conversation:conversation:1222679"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1222679"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" \n   ","postTime":"2025-04-03T17:14:21.687-07:00","lastPublishTime":"2025-04-09T08:10:27.496-07:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":93},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:translation-best-practices/message:1222679"},"Conversation:conversation:1222679":{"__typename":"Conversation","id":"conversation:1222679","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1222679"},"lastPostingActivityTime":"2025-04-09T08:10:27.496-07:00","lastPostTime":"2025-04-03T17:14:21.687-07:00"},"ModerationData:moderation_data:1222679":{"__typename":"ModerationData","id":"moderation_data:1222679","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1222679":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1222679","relatedMessage":{"__ref":"TkbTopicMessage:message:1222679"}},"User:user:496439":{"__typename":"User","id":"user:496439","uid":496439,"login":"AnthonyKarcz","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2018-04-09T09:37:35.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C5ac3bbfa91f27c5047e8d065"},"rank":{"__ref":"Rank:rank:2"},"messagesCount":250,"kudosGivenCount":16,"kudosReceivedCount":39,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:496439"},"Category:category:series":{"__typename":"Category","id":"category:series","entityType":"CATEGORY","displayId":"series","nodeType":"category","depth":2,"title":"Series","shortTitle":"Series"},"Tkb:board:user-guide-series":{"__typename":"Tkb","id":"board:user-guide-series","entityType":"TKB","displayId":"user-guide-series","nodeType":"board","depth":3,"conversationStyle":"TKB","title":"User Guide Series","shortTitle":"User Guide Series","parent":{"__ref":"Category:category:series"},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"avatar":null,"description":"","eventPath":"category:series/category:learn/community:rwgqn69235board:user-guide-series/"},"TkbTopicMessage:message:1193839":{"__typename":"TkbTopicMessage","uid":1193839,"subject":"How to Learn with Reach 360","id":"message:1193839","revisionNum":2,"repliesCount":0,"author":{"__ref":"User:user:496439"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:user-guide-series"},"conversation":{"__ref":"Conversation:conversation:1193839"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1193839"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":"","postTime":"2023-11-06T08:34:39.000-08:00","lastPublishTime":"2024-09-23T11:15:30.357-07:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":4366},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:series/category:learn/community:rwgqn69235board:user-guide-series/message:1193839"},"Conversation:conversation:1193839":{"__typename":"Conversation","id":"conversation:1193839","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1193839"},"lastPostingActivityTime":"2024-09-23T11:15:30.357-07:00","lastPostTime":"2023-11-06T08:34:39.000-08:00"},"ModerationData:moderation_data:1193839":{"__typename":"ModerationData","id":"moderation_data:1193839","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1193839":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1193839","relatedMessage":{"__ref":"TkbTopicMessage:message:1193839"}},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjctOHlneHFj?image-coordinates=0%2C0%2C960%2C960\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjctOHlneHFj?image-coordinates=0%2C0%2C960%2C960","mimeType":"image/png"},"Tkb:board:accessibility-training":{"__typename":"Tkb","id":"board:accessibility-training","entityType":"TKB","displayId":"accessibility-training","nodeType":"board","depth":3,"conversationStyle":"TKB","title":"Accessible E-Learning","shortTitle":"Accessible E-Learning","parent":{"__ref":"Category:category:training-tutorials"},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjctOHlneHFj?image-coordinates=0%2C0%2C960%2C960\"}"},"description":"Learn to make e-learning accessible to all.","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:accessibility-training/"},"TkbTopicMessage:message:1215843":{"__typename":"TkbTopicMessage","uid":1215843,"subject":"What is Accessible E-Learning?","id":"message:1215843","revisionNum":2,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:accessibility-training"},"conversation":{"__ref":"Conversation:conversation:1215843"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1215843"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" In this webinar, we’ll review some of the basic introductory concepts of accessibility in e-learning. \n \n   ","postTime":"2025-02-06T08:14:52.203-08:00","lastPublishTime":"2025-02-06T08:21:06.160-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":165},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:accessibility-training/message:1215843"},"Conversation:conversation:1215843":{"__typename":"Conversation","id":"conversation:1215843","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1215843"},"lastPostingActivityTime":"2025-02-06T08:21:06.160-08:00","lastPostTime":"2025-02-06T08:14:52.203-08:00"},"ModerationData:moderation_data:1215843":{"__typename":"ModerationData","id":"moderation_data:1215843","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1215843":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1215843","relatedMessage":{"__ref":"TkbTopicMessage:message:1215843"}},"Rank:rank:6":{"__typename":"Rank","id":"rank:6","position":5,"name":"Community Member","color":"333333","icon":null,"rankStyle":"TEXT"},"User:user:127771":{"__typename":"User","id":"user:127771","uid":127771,"login":"JeanMarrapodi-c","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2023-01-05T14:07:18.000-08:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C4e9c7d6b-2043-4c83-ac9e-23fda25eb4de"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":55,"kudosGivenCount":20,"kudosReceivedCount":6,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:127771"},"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"},"ForumTopicMessage:message:1219269":{"__typename":"ForumTopicMessage","uid":1219269,"subject":"Hidden Developer Notes","id":"message:1219269","revisionNum":1,"repliesCount":10,"author":{"__ref":"User:user:127771"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1219269"},"moderationData":{"__ref":"ModerationData:moderation_data:1219269"},"postTime":"2025-03-07T11:19:10.395-08:00","lastPublishTime":"2025-03-07T11:19:10.395-08:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":84},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1219269"},"Conversation:conversation:1219269":{"__typename":"Conversation","id":"conversation:1219269","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1219269"},"lastPostingActivityTime":"2025-03-07T15:41:50.167-08:00","lastPostTime":"2025-03-07T15:41:50.167-08:00"},"ModerationData:moderation_data:1219269":{"__typename":"ModerationData","id":"moderation_data:1219269","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1219269":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1219269","relatedMessage":{"__ref":"ForumTopicMessage:message:1219269"}},"TkbTopicMessage:message:1215974":{"__typename":"TkbTopicMessage","uid":1215974,"subject":"Graphic Design Essentials for E-Learning","id":"message:1215974","revisionNum":2,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:instructional-design"},"conversation":{"__ref":"Conversation:conversation:1215974"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1215974"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" \n Learn how to apply essential design elements to create more visually appealing courses. \n   ","postTime":"2025-02-07T06:51:25.334-08:00","lastPublishTime":"2025-02-07T08:52:54.217-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":256},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:instructional-design/message:1215974"},"Conversation:conversation:1215974":{"__typename":"Conversation","id":"conversation:1215974","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1215974"},"lastPostingActivityTime":"2025-02-07T08:52:54.217-08:00","lastPostTime":"2025-02-07T06:51:25.334-08:00"},"ModerationData:moderation_data:1215974":{"__typename":"ModerationData","id":"moderation_data:1215974","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1215974":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1215974","relatedMessage":{"__ref":"TkbTopicMessage:message:1215974"}},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi05Ny13VWQxNFE?image-coordinates=0%2C0%2C160%2C160\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bi05Ny13VWQxNFE?image-coordinates=0%2C0%2C160%2C160","mimeType":"image/png"},"Tkb:board:storyline-360-video-tutorials":{"__typename":"Tkb","id":"board:storyline-360-video-tutorials","entityType":"TKB","displayId":"storyline-360-video-tutorials","nodeType":"board","depth":3,"conversationStyle":"TKB","title":"Storyline Video Tutorials","shortTitle":"Storyline Video Tutorials","parent":{"__ref":"Category:category:training-tutorials"},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi05Ny13VWQxNFE?image-coordinates=0%2C0%2C160%2C160\"}"},"description":"Quick Storyline tutorials to get you started.","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:storyline-360-video-tutorials/"},"TkbTopicMessage:message:1210940":{"__typename":"TkbTopicMessage","uid":1210940,"subject":"Create Accessible E-Learning Content in Storyline","id":"message:1210940","revisionNum":5,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:storyline-360-video-tutorials"},"conversation":{"__ref":"Conversation:conversation:1210940"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1210940"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" Learn to implement essential accessibility features in Storyline 360. \n \n   ","postTime":"2024-12-23T17:18:14.012-08:00","lastPublishTime":"2025-03-03T10:09:42.249-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":391},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:storyline-360-video-tutorials/message:1210940"},"Conversation:conversation:1210940":{"__typename":"Conversation","id":"conversation:1210940","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1210940"},"lastPostingActivityTime":"2025-03-03T10:09:42.249-08:00","lastPostTime":"2024-12-23T17:18:14.012-08:00"},"ModerationData:moderation_data:1210940":{"__typename":"ModerationData","id":"moderation_data:1210940","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1210940":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1210940","relatedMessage":{"__ref":"TkbTopicMessage:message:1210940"}},"TkbTopicMessage:message:1216003":{"__typename":"TkbTopicMessage","uid":1216003,"subject":"Using Interactive Scenarios in Your E-Learning","id":"message:1216003","revisionNum":1,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:instructional-design"},"conversation":{"__ref":"Conversation:conversation:1216003"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1216003"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" How to structure a scenario interaction and what types of assets you’ll need to build one. \n \n   ","postTime":"2025-02-07T09:06:25.836-08:00","lastPublishTime":"2025-02-07T09:06:25.836-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":206},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:instructional-design/message:1216003"},"Conversation:conversation:1216003":{"__typename":"Conversation","id":"conversation:1216003","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1216003"},"lastPostingActivityTime":"2025-02-07T09:06:25.836-08:00","lastPostTime":"2025-02-07T09:06:25.836-08:00"},"ModerationData:moderation_data:1216003":{"__typename":"ModerationData","id":"moderation_data:1216003","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1216003":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1216003","relatedMessage":{"__ref":"TkbTopicMessage:message:1216003"}},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjEtUVNvVFY1?image-coordinates=0%2C0%2C1920%2C1920\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjEtUVNvVFY1?image-coordinates=0%2C0%2C1920%2C1920","mimeType":"image/png"},"Tkb:board:storyline-tips-tricks":{"__typename":"Tkb","id":"board:storyline-tips-tricks","entityType":"TKB","displayId":"storyline-tips-tricks","nodeType":"board","depth":3,"conversationStyle":"TKB","title":"Storyline Skill Builders","shortTitle":"Storyline Skill Builders","parent":{"__ref":"Category:category:training-tutorials"},"userContext":{"__typename":"NodeUserContext","canAddAttachments":true,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"avatar":{"__ref":"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMjEtUVNvVFY1?image-coordinates=0%2C0%2C1920%2C1920\"}"},"description":"Level up your Storyline skills with these tips & tricks.","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:storyline-tips-tricks/"},"TkbTopicMessage:message:1216743":{"__typename":"TkbTopicMessage","uid":1216743,"subject":"5 Ways to Personalize E-Learning Courses","id":"message:1216743","revisionNum":6,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:storyline-tips-tricks"},"conversation":{"__ref":"Conversation:conversation:1216743"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1216743"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" In this session, we’ll cover several ways to personalize courses using Storyline 360. \n \n   ","postTime":"2025-02-13T11:05:08.438-08:00","lastPublishTime":"2025-02-13T15:41:05.554-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":193},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:storyline-tips-tricks/message:1216743"},"Conversation:conversation:1216743":{"__typename":"Conversation","id":"conversation:1216743","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1216743"},"lastPostingActivityTime":"2025-02-13T15:41:05.554-08:00","lastPostTime":"2025-02-13T11:05:08.438-08:00"},"ModerationData:moderation_data:1216743":{"__typename":"ModerationData","id":"moderation_data:1216743","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1216743":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1216743","relatedMessage":{"__ref":"TkbTopicMessage:message:1216743"}},"TkbTopicMessage:message:1215858":{"__typename":"TkbTopicMessage","uid":1215858,"subject":"How to Write Alt Text for E-Learning","id":"message:1215858","revisionNum":2,"repliesCount":0,"author":{"__ref":"User:user:914631"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:accessibility-training"},"conversation":{"__ref":"Conversation:conversation:1215858"},"contentWorkflow":{"__typename":"ContentWorkflow","state":"PUBLISH","scheduledPublishTime":null,"scheduledTimezone":null,"shortScheduledTimezone":null,"userContext":{"__typename":"MessageWorkflowContext","canSubmitForReview":null,"canEdit":false,"canRecall":null,"canSubmitForPublication":null,"canReturnToAuthor":null,"canPublish":null,"canReturnToReview":null,"canSchedule":null}},"moderationData":{"__ref":"ModerationData:moderation_data:1215858"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" Add alt text to e-learning courses. \n \n   ","postTime":"2025-02-06T09:08:58.883-08:00","lastPublishTime":"2025-02-14T12:15:09.216-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":274},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:accessibility-training/message:1215858"},"Conversation:conversation:1215858":{"__typename":"Conversation","id":"conversation:1215858","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1215858"},"lastPostingActivityTime":"2025-02-14T12:15:09.216-08:00","lastPostTime":"2025-02-06T09:08:58.883-08:00"},"ModerationData:moderation_data:1215858":{"__typename":"ModerationData","id":"moderation_data:1215858","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1215858":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1215858","relatedMessage":{"__ref":"TkbTopicMessage:message:1215858"}},"User:user:1521364":{"__typename":"User","id":"user:1521364","uid":1521364,"login":"ruby05guy","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2024-11-26T00:53:58.405-08:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7Ccc7358c1-4b34-4a3d-b545-e20f85b657ca"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:1521364"},"ModerationData:moderation_data:1208003":{"__typename":"ModerationData","id":"moderation_data:1208003","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:1208003":{"__typename":"ForumReplyMessage","uid":1208003,"id":"message:1208003","revisionNum":1,"author":{"__ref":"User:user:1521364"},"readOnly":false,"repliesCount":2,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208003"},"body":"

The features you've included, like SCORM compatibility, mobile support, and pagination for comments, really make it a comprehensive and user-friendly tool. I love that you’re considering accessibility with WCAG 2.2 AA, and the ability to export to Word and print comments is a great touch.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":1,"postTime":"2024-11-26T00:56:08.167-08:00","lastPublishTime":"2024-11-26T00:56:08.167-08:00","metrics":{"__typename":"MessageMetrics","views":280},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208003","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMDg1MjUsMTIwODUyNQ","node":{"__ref":"ForumReplyMessage:message:1208525"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMDg1MjUsMTIxNDM0Ng","node":{"__ref":"ForumReplyMessage:message:1214346"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1208525":{"__typename":"ModerationData","id":"moderation_data:1208525","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1208525":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1208525","revisionNum":1,"uid":1208525,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1208003"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208525"},"body":"

Thanks for the feedback ruby05guy . I'm really aiming to make it easy to implement and easy to use (for everybody). Is this an application that you think you could use in future projects. Have you had the need for it in the past, or would you look for opportunities to use it in the future?

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":0,"postTime":"2024-12-02T17:49:35.808-08:00","lastPublishTime":"2024-12-02T17:49:35.808-08:00","metrics":{"__typename":"MessageMetrics","views":245},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208525","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1214346":{"__typename":"ModerationData","id":"moderation_data:1214346","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214346":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1214346","revisionNum":1,"uid":1214346,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1208003"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214346"},"body":"

Hi ruby05guy the BETA version is now available. See the original post for a link to the files and instructions. 

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"119","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-27T13:57:31.622-08:00","lastPublishTime":"2025-01-27T13:57:31.622-08:00","metrics":{"__typename":"MessageMetrics","views":120},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214346","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:123669":{"__typename":"User","id":"user:123669","uid":123669,"login":"DavidAtkinson-d","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2022-05-23T07:49:25.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C515c1cc4-4ee1-42b9-8ab9-6c80d7df396f"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:123669"},"ModerationData:moderation_data:1208165":{"__typename":"ModerationData","id":"moderation_data:1208165","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1208165":{"__typename":"ForumReplyMessage","uid":1208165,"id":"message:1208165","revisionNum":1,"author":{"__ref":"User:user:123669"},"readOnly":false,"repliesCount":10,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208165"},"body":"

Hello Sam, just watched your video and tried the SCORM Cloud Rise Journal. This is excellent - I could use this in so many Rise builds. Button location near each block works well, the notes being separated into individual topics is logical. It's behavior works well for me. The implementation post publish seems fairly straight forward. The files rebus-notes.css and rebus-notes.js are you making them available to us to implement into our own project, or a guide how to produce them. I've been following this thread for some time but not really paying much attention to it until now, so forgive me if I've already missed them anywhere

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"postTime":"2024-11-27T01:37:29.444-08:00","lastPublishTime":"2024-11-27T01:37:29.444-08:00","metrics":{"__typename":"MessageMetrics","views":265},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208165","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMDgyMzksMTIwODIzOQ","node":{"__ref":"ForumReplyMessage:message:1208239"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMDgyMzksMTIxNDM0Mg","node":{"__ref":"ForumReplyMessage:message:1214342"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1208239":{"__typename":"ModerationData","id":"moderation_data:1208239","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1208239":{"__typename":"ForumReplyMessage","uid":1208239,"id":"message:1208239","revisionNum":1,"author":{"__ref":"User:user:45789"},"readOnly":false,"repliesCount":8,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1208165"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208239"},"body":"

Hi DavidAtkinson-d thanks for taking a look and I appreciate the feedback. It's very much Alpha at the moment and not ready for distribution (not fully tested).

\n

When it reaches BETA in the next couple of weeks, I will distribute to a handful of people that are interested (I can include you). I'll pop a demo of BETA on this thread when ready, and will message you so I can provide you with a copy.

\n

I'm not sure at this stage if I'll be open sourcing or asking for a a few dollars in exchange as it's been a relatively significant development.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":4,"postTime":"2024-11-27T14:49:57.301-08:00","lastPublishTime":"2024-11-27T14:49:57.301-08:00","metrics":{"__typename":"MessageMetrics","views":244},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208239","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":true,"endCursor":"MjUuM3wyLjF8aXwxfDM5OjF8aW50LDEyMDgyODEsMTIwODI4MQ","hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDM5OjF8aW50LDEyMDgyODEsMTIwODI4MQ","node":{"__ref":"ForumReplyMessage:message:1208281"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1208281":{"__typename":"ModerationData","id":"moderation_data:1208281","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1208281":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:123669"},"id":"message:1208281","revisionNum":1,"uid":1208281,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1208239"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208281"},"body":"

Hi Sam, thanks yes a copy of the beta would be appreciated. Understood about the open sourcing, just let me know when the time comes. Thanks again and great work.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"164","kudosSumWeight":1,"repliesCount":0,"postTime":"2024-11-28T05:53:33.492-08:00","lastPublishTime":"2024-11-28T05:53:33.492-08:00","metrics":{"__typename":"MessageMetrics","views":214},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208281","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1214342":{"__typename":"ModerationData","id":"moderation_data:1214342","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214342":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1214342","revisionNum":1,"uid":1214342,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1208165"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214342"},"body":"

Hi DavidAtkinson-d, the BETA version is now available. See the original post for a link to the files and instructions.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"120","kudosSumWeight":1,"repliesCount":0,"postTime":"2025-01-27T13:53:54.684-08:00","lastPublishTime":"2025-01-27T13:53:54.684-08:00","metrics":{"__typename":"MessageMetrics","views":96},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214342","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:1473625":{"__typename":"User","id":"user:1473625","uid":1473625,"login":"ChrisLee2","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2014-03-24T21:53:16.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7Cd0cec9b0-fbe8-0131-1cab-22000b2f96a1"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:1473625"},"ModerationData:moderation_data:1208402":{"__typename":"ModerationData","id":"moderation_data:1208402","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1208402":{"__typename":"ForumReplyMessage","uid":1208402,"id":"message:1208402","revisionNum":1,"author":{"__ref":"User:user:1473625"},"readOnly":false,"repliesCount":3,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208402"},"body":"

Hi Sam, great work. I like the fact notes are by block (user friendly). No doubt ID's will want CSS customisation of the output, so I'd include that in any paperwork on release. Impressive.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"191","kudosSumWeight":1,"postTime":"2024-12-02T05:48:42.272-08:00","lastPublishTime":"2024-12-02T05:48:42.272-08:00","metrics":{"__typename":"MessageMetrics","views":199},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208402","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMDg1MjQsMTIwODUyNA","node":{"__ref":"ForumReplyMessage:message:1208524"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1208524":{"__typename":"ModerationData","id":"moderation_data:1208524","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1208524":{"__typename":"ForumReplyMessage","uid":1208524,"id":"message:1208524","revisionNum":2,"author":{"__ref":"User:user:45789"},"readOnly":false,"repliesCount":2,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1208402"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208524"},"body":"

Yes, I'll be making this as flexible as possible. There won't be a front-end to make those kind of updates, but I can definitely add the Print/Word styles to a JavaScript configuration file. I will be keeping the styles basic for release though.

\n

Those with a bit more JavaScript nous will be able to dress the documents up nicely.

\n

Do you think this is something you could use for projects in future (or have used something similar in the past) ChrisLee2 ?

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"postTime":"2024-12-02T17:48:02.447-08:00","lastPublishTime":"2024-12-02T17:50:21.382-08:00","metrics":{"__typename":"MessageMetrics","views":192},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208524","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDM5OjF8aW50LDEyMDg1NDEsMTIwODU0MQ","node":{"__ref":"ForumReplyMessage:message:1208541"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1208541":{"__typename":"ModerationData","id":"moderation_data:1208541","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1208541":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:1473625"},"id":"message:1208541","revisionNum":1,"uid":1208541,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1208524"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1208541"},"body":"

I'm just going off what happened with the first journal, as ID's got it to work they're next question was how to customize it. I can imagine this being quite popular.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"168","kudosSumWeight":1,"repliesCount":1,"postTime":"2024-12-03T00:55:27.326-08:00","lastPublishTime":"2024-12-03T00:55:27.326-08:00","metrics":{"__typename":"MessageMetrics","views":180},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1208541","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:633150":{"__typename":"User","id":"user:633150","uid":633150,"login":"JonathanAspelin","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2023-06-03T07:53:19.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C3ef88d99-418a-4dcb-b2cd-dd105b673f02"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:633150"},"ModerationData:moderation_data:1210588":{"__typename":"ModerationData","id":"moderation_data:1210588","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1210588":{"__typename":"ForumReplyMessage","uid":1210588,"id":"message:1210588","revisionNum":1,"author":{"__ref":"User:user:633150"},"readOnly":false,"repliesCount":1,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1210588"},"body":"

Hi  Sam

Thanks for tackling this issue.

Have looked at the video and this is exactly the solution that we need and have been unsuccessfully looking for. Have had to look at other less viable options using H5p or storyline notepad lightbox with  limitations regarding saving the notes, grouping them etc.

Minor issue may be the ability to print selected parts or export selected parts as looks like prints/saves all each time. Would the facilitator have the ability to review the notes created in any way.

Would be happy to get involved in testing and thanks for this, commercial approach makes sense as this would be a significant value add on our side.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":1,"postTime":"2024-12-20T05:15:58.540-08:00","lastPublishTime":"2024-12-20T05:15:58.540-08:00","metrics":{"__typename":"MessageMetrics","views":140},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1210588","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTQzNDAsMTIxNDM0MA","node":{"__ref":"ForumReplyMessage:message:1214340"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1214340":{"__typename":"ModerationData","id":"moderation_data:1214340","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214340":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1214340","revisionNum":1,"uid":1214340,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1210588"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214340"},"body":"

Hi JonathanAspelin, the BETA version is now available. See the original post for a link to the files and instructions.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"120","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-27T13:52:50.440-08:00","lastPublishTime":"2025-01-27T13:52:50.440-08:00","metrics":{"__typename":"MessageMetrics","views":86},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214340","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:424853":{"__typename":"User","id":"user:424853","uid":424853,"login":"AmyGtt","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2021-07-27T11:20:52.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C46b0bf0c-68dd-4bb0-97b9-40f1fb488aa2"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:424853"},"ModerationData:moderation_data:1211811":{"__typename":"ModerationData","id":"moderation_data:1211811","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1211811":{"__typename":"ForumReplyMessage","uid":1211811,"id":"message:1211811","revisionNum":1,"author":{"__ref":"User:user:424853"},"readOnly":false,"repliesCount":2,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1211811"},"body":"

Hi Sam,

This is absolutely amazing. It is exactly what I need for my course. My question is, would it be possible to create this not for just one course but for many? I have 14 RISE courses (each is a lecture to me) in my online class. My LMS combines them into one course for me. I would love to have my students take each lecture with their notes and have them added to a course notebook at the end of all of my 14 lectures, so they have their own guide. Can you imagine that this would be possible at all?

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"postTime":"2025-01-06T10:58:09.772-08:00","lastPublishTime":"2025-01-06T10:58:09.772-08:00","metrics":{"__typename":"MessageMetrics","views":147},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1211811","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTE4NjAsMTIxMTg2MA","node":{"__ref":"ForumReplyMessage:message:1211860"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1211860":{"__typename":"ModerationData","id":"moderation_data:1211860","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1211860":{"__typename":"ForumReplyMessage","uid":1211860,"id":"message:1211860","revisionNum":1,"author":{"__ref":"User:user:45789"},"readOnly":false,"repliesCount":1,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1211811"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1211860"},"body":"

Hi AmyGtt I'd need some more information on the structure before I can answer this, but will provide some information on how it does work.

\n

The Learning Journal makes use of SCORM to store the notes, therefore, notes are associated with an individual SCORM package. For example, when you publish a Rise course to the SCORM specification.

\n

It sounds like your LMS provides a means to group together a number of SCORM modules to present as a single course. In this instance, there would be individual notes for each of those SCORM modules. Notes taken in SCORM module X would not be available in SCORM module Y. The reason being, the data is not shareable in SCORM. SCORM does not provide a means to share data between modules and they are only self aware.

\n

We will be looking at ways this could be enhanced in future to support accessing data across different modules, but this would require a 3rd party database, which would incur costs.

\n

We're keeping it simple for this first iteration.

\n

I'm looking forward to releasing the BETA later this month. I'll let you know when it is available.

\n

 

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":2,"postTime":"2025-01-06T14:16:46.215-08:00","lastPublishTime":"2025-01-06T14:16:46.215-08:00","metrics":{"__typename":"MessageMetrics","views":122},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1211860","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDM5OjF8aW50LDEyMTE4NjEsMTIxMTg2MQ","node":{"__ref":"ForumReplyMessage:message:1211861"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1211861":{"__typename":"ModerationData","id":"moderation_data:1211861","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1211861":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:424853"},"id":"message:1211861","revisionNum":1,"uid":1211861,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1211860"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1211861"},"body":"

ok, thank you very much for the reply.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"40","kudosSumWeight":1,"repliesCount":0,"postTime":"2025-01-06T14:18:55.923-08:00","lastPublishTime":"2025-01-06T14:18:55.923-08:00","metrics":{"__typename":"MessageMetrics","views":142},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1211861","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:1195420":{"__typename":"User","id":"user:1195420","uid":1195420,"login":"CarrieAlbin-b90","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2018-05-16T15:52:50.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C5afb66e34bd5b6247de8ab45"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:1195420"},"ModerationData:moderation_data:1212530":{"__typename":"ModerationData","id":"moderation_data:1212530","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1212530":{"__typename":"ForumReplyMessage","uid":1212530,"id":"message:1212530","revisionNum":1,"author":{"__ref":"User:user:1195420"},"readOnly":false,"repliesCount":1,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1212530"},"body":"

Hi Sam,

I love your learning journal!!  I have used other types in my Rise courses but this one definitely seems to be significantly better than any I have seen.  I love that you are also focusing on accessibility because many of my clients require that.  I don't have any feedback except that I love it!  I love that you have the icon next to each block.  I love that you can edit and delete comments.  And most importantly I love that it should save their inputs and they can print out a PDF or Word doc at the end of the Rise course.  Please let me know when the Beta is ready.  I would love to be a part of that testing.  And I completely agree you should be paid for all the development time you have put into this.  Keep up the amazing work!

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":1,"postTime":"2025-01-10T14:22:04.271-08:00","lastPublishTime":"2025-01-10T14:22:04.271-08:00","metrics":{"__typename":"MessageMetrics","views":122},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1212530","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTQzMzgsMTIxNDMzOA","node":{"__ref":"ForumReplyMessage:message:1214338"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1214338":{"__typename":"ModerationData","id":"moderation_data:1214338","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214338":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1214338","revisionNum":1,"uid":1214338,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1212530"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214338"},"body":"

Hi CarrieAlbin-b90, the BETA version is now available. See the original post for a link to the files and instructions.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"120","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-27T13:52:05.184-08:00","lastPublishTime":"2025-01-27T13:52:05.184-08:00","metrics":{"__typename":"MessageMetrics","views":84},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214338","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:83794":{"__typename":"User","id":"user:83794","uid":83794,"login":"MelnieHalliwell","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2017-07-24T01:04:15.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C597595c7f7d56407a2c7d2cf"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:83794"},"ModerationData:moderation_data:1213475":{"__typename":"ModerationData","id":"moderation_data:1213475","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1213475":{"__typename":"ForumReplyMessage","uid":1213475,"id":"message:1213475","revisionNum":2,"author":{"__ref":"User:user:83794"},"readOnly":false,"repliesCount":2,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1213475"},"body":"

Hey Sam. I was a long time user of Mike's learning journal. I'm working on a build that requires a journal, and found my way to you just now after following some support threads from Mike's version. Your work is fantastic—it's really exciting—and I can't wait to start using it! Can you please include me in the BETA release? I'll be watching your full video shortly and reading your release notes, so my question may very well already be answered, but are you able to control/select the blocks that show the widget? Thanks so much for sharing this :-) Melanie

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":1,"postTime":"2025-01-20T18:19:11.900-08:00","lastPublishTime":"2025-01-20T18:24:04.610-08:00","metrics":{"__typename":"MessageMetrics","views":127},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1213475","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTM2MDcsMTIxMzYwNw","node":{"__ref":"ForumReplyMessage:message:1213607"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTM2MDcsMTIxNDMzNw","node":{"__ref":"ForumReplyMessage:message:1214337"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1213607":{"__typename":"ModerationData","id":"moderation_data:1213607","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1213607":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1213607","revisionNum":1,"uid":1213607,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1213475"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1213607"},"body":"

Hi melaniehalliwell thanks for the comments. The component currently attaches to certain types of blocks and cannot be attached to specific blocks that the author chooses.

\n

I will look into this though as it is possible. For example, adding a specific string \"{{notes-button}}\" at the top of a block could be used as a directive to insert the component. This was one of my very early experiments, but I opted for automatically inserting on certain block types. I will consider this as a more advanced implementation.

\n

Thanks for the feedback!

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-21T12:28:48.608-08:00","lastPublishTime":"2025-01-21T12:28:48.608-08:00","metrics":{"__typename":"MessageMetrics","views":109},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1213607","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1214337":{"__typename":"ModerationData","id":"moderation_data:1214337","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214337":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1214337","revisionNum":1,"uid":1214337,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1213475"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214337"},"body":"

Hi MelnieHalliwell, the BETA version is now available. See the original post for a link to the files and instructions.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"120","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-27T13:51:25.675-08:00","lastPublishTime":"2025-01-27T13:51:25.675-08:00","metrics":{"__typename":"MessageMetrics","views":87},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214337","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:1418117":{"__typename":"User","id":"user:1418117","uid":1418117,"login":"CindyMcElhin363","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2018-05-31T12:55:10.000-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C5b104060015ad34083c56400"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:1418117"},"ModerationData:moderation_data:1214042":{"__typename":"ModerationData","id":"moderation_data:1214042","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214042":{"__typename":"ForumReplyMessage","uid":1214042,"id":"message:1214042","revisionNum":1,"author":{"__ref":"User:user:1418117"},"readOnly":false,"repliesCount":3,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214042"},"body":"

SamHillHey there Sam. Just came across this and WOW! I've been down a rabbit hole trying to figure out a way to integrate a \"digtial workbook\" into RISE - everything from fillable pdf, to google doc, to https:/wobo.app to Storyline text input and nothing I have seen thus far is as easy and elegant as the solution you have built here. While it's not an interactive workbook like I exactly had in mind -- mostly I want to prompt the user with questions and different inputs and personal reflections  -- this solution you have here could simplify things immensely. I am thinking I could prompt the user with onscreen text in the block instructing them what to input in the note. For me having the notes associated with a block rather than one big note is defintely the way to go for my use case. So I guess the quesion is can we implement it now? Where exactly are you in dev? I have a course going live March 1 and would love to give it a try and am also willing to put it out in the world. Our March 1 users are a small controlled group of pilot users so we have wiggle room with working out any kinks. How can I run with it and help in any way with your feedback/testing? Bottom line....I love it! I want it! Thank you so much for helping everyone take Rise to another level. 

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":3,"postTime":"2025-01-24T07:50:13.791-08:00","lastPublishTime":"2025-01-24T07:50:13.791-08:00","metrics":{"__typename":"MessageMetrics","views":98},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214042","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTQxMjEsMTIxNDEyMQ","node":{"__ref":"ForumReplyMessage:message:1214121"}}]},"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"customFields":[]},"ModerationData:moderation_data:1214121":{"__typename":"ModerationData","id":"moderation_data:1214121","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214121":{"__typename":"ForumReplyMessage","uid":1214121,"id":"message:1214121","revisionNum":1,"author":{"__ref":"User:user:45789"},"readOnly":false,"repliesCount":2,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1214042"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214121"},"body":"

Hi CindyMcElhin363 I'd be really keen to get this in your project and iron out kinks. The BETA will be ready next week. I'll be updating this post with implementation. I'll be looking to distribute the BETA version for free to a handful of people willing to explore using it in a real project. Can you tell me which version of SCORM you use?

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":1,"postTime":"2025-01-24T14:21:59.564-08:00","lastPublishTime":"2025-01-24T14:21:59.564-08:00","metrics":{"__typename":"MessageMetrics","views":112},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214121","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDM5OjF8aW50LDEyMTQxNDgsMTIxNDE0OA","node":{"__ref":"ForumReplyMessage:message:1214148"}}]},"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"customFields":[]},"ModerationData:moderation_data:1214148":{"__typename":"ModerationData","id":"moderation_data:1214148","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214148":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:1418117"},"id":"message:1214148","revisionNum":1,"uid":1214148,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1214121"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214148"},"body":"

SamHillAwesome. I can use either version. My platform running the Rise courses is a wordpress site using Paid Memberships Pro and LifterLMS with GrassBlade LRS/xAPI Companion.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"177","kudosSumWeight":0,"repliesCount":1,"postTime":"2025-01-25T06:37:27.219-08:00","lastPublishTime":"2025-01-25T06:37:27.219-08:00","metrics":{"__typename":"MessageMetrics","views":112},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214148","attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"customFields":[]},"ModerationData:moderation_data:1214048":{"__typename":"ModerationData","id":"moderation_data:1214048","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214048":{"__typename":"ForumReplyMessage","uid":1214048,"id":"message:1214048","revisionNum":1,"author":{"__ref":"User:user:424853"},"readOnly":false,"repliesCount":1,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214048"},"body":"

Thank you! I can wait to use it as well.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"42","kudosSumWeight":1,"postTime":"2025-01-24T07:58:21.180-08:00","lastPublishTime":"2025-01-24T07:58:21.180-08:00","metrics":{"__typename":"MessageMetrics","views":105},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214048","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTQzMzUsMTIxNDMzNQ","node":{"__ref":"ForumReplyMessage:message:1214335"}}]},"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"customFields":[]},"ModerationData:moderation_data:1214335":{"__typename":"ModerationData","id":"moderation_data:1214335","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214335":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:45789"},"id":"message:1214335","revisionNum":1,"uid":1214335,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1214048"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214335"},"body":"

Hi AmyGtt, the BETA version is now available. See the original post for a link to the files and instructions.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"111","kudosSumWeight":0,"repliesCount":0,"postTime":"2025-01-27T13:50:20.186-08:00","lastPublishTime":"2025-01-27T13:50:20.186-08:00","metrics":{"__typename":"MessageMetrics","views":86},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214335","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"customFields":[]},"User:user:1528022":{"__typename":"User","id":"user:1528022","uid":1528022,"login":"emmbee","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2025-01-26T12:21:38.017-08:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7Cba270b03-72e7-46c5-bb73-cf2977050124"},"rank":{"__ref":"Rank:rank:6"},"entityType":"USER","eventPath":"community:rwgqn69235/user:1528022"},"ModerationData:moderation_data:1214175":{"__typename":"ModerationData","id":"moderation_data:1214175","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":"member"},"ForumReplyMessage:message:1214175":{"__typename":"ForumReplyMessage","uid":1214175,"id":"message:1214175","revisionNum":1,"author":{"__ref":"User:user:1528022"},"readOnly":false,"repliesCount":11,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumTopicMessage:message:1208000"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214175"},"body":"

I've been waiting for something like this for years!!! Have you shared the rebus js/css previously? Or is that what you will be sharing this week? I'm hoping to include this in my capstone project (due 02/02), but the timing is TIGHT! Thanks for sharing this great work!!!

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"postTime":"2025-01-26T12:24:56.219-08:00","lastPublishTime":"2025-01-26T12:24:56.219-08:00","metrics":{"__typename":"MessageMetrics","views":107},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214175","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMTQzMjcsMTIxNDMyNw","node":{"__ref":"ForumReplyMessage:message:1214327"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1214327":{"__typename":"ModerationData","id":"moderation_data:1214327","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214327":{"__typename":"ForumReplyMessage","uid":1214327,"id":"message:1214327","revisionNum":1,"author":{"__ref":"User:user:45789"},"readOnly":false,"repliesCount":10,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1214175"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214327"},"body":"

Hi emmbee, it's possible the timing is a bit tight for you but the files and instructions are now available at the bottom of the original post. Maybe for the next project.

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"173","kudosSumWeight":0,"postTime":"2025-01-27T13:40:50.769-08:00","lastPublishTime":"2025-01-27T13:40:50.769-08:00","metrics":{"__typename":"MessageMetrics","views":98},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214327","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDM5OjF8aW50LDEyMTQ1NDMsMTIxNDU0Mw","node":{"__ref":"ForumReplyMessage:message:1214543"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1214543":{"__typename":"ModerationData","id":"moderation_data:1214543","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1214543":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:1528022"},"id":"message:1214543","revisionNum":1,"uid":1214543,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:discuss"},"parent":{"__ref":"ForumReplyMessage:message:1214327"},"conversation":{"__ref":"Conversation:conversation:1208000"},"subject":"Re: Rise Learning Journal / Notes","moderationData":{"__ref":"ModerationData:moderation_data:1214543"},"body":"

SamHill - you are a rockstar!!!  

Here is some feedback: I just added the css and js to my SCORM package and tested it out in TalentLMS. The note-taking functionality works as expected in the course itself 😃, however when I exit or complete the course, it is not retaining the notes.

The progress is saved in the LMS platform (completed or resume), but the notes have disappeared from the course.  Have you encountered this? Is there a workaround? 

You've done an amazing job and I think you'll be able to capitalize well with this solution - bravo!

","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":0,"repliesCount":9,"postTime":"2025-01-28T18:06:46.736-08:00","lastPublishTime":"2025-01-28T18:06:46.736-08:00","metrics":{"__typename":"MessageMetrics","views":92},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1208000/message:1214543","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"CachedAsset:text:en_US-components/community/Navbar-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/community/Navbar-1744833252935","value":{"community":"Community Home","inbox":"Inbox","manageContent":"Manage Content","tos":"Terms of Service","forgotPassword":"Forgot Password","themeEditor":"Theme Editor","edit":"Edit Navigation Bar","skipContent":"Skip to content","migrated-link-9":"Share Examples","migrated-link-7":"Connect","Common-community-blog-link":"Community Blog","migrated-link-8":"Discuss Articulate Products","migrated-link-1":"User Guides","migrated-link-2":"Training and Tutorials","Common-external-link":"Articulate Homepage","migrated-link-0":"Learn","migrated-link-5":"E-Books","migrated-link-6":"E-Learning Challenges","migrated-link-3":"Articles","migrated-link-4":"Product Updates","migrated-link-14":"About","Common-external-link-5":"Articulate Status","migrated-link-12":"Join Groups","Common-external-link-4":"Case Studies","migrated-link-13":"Discover","Common-external-link-3":"Blog","Common-exchange-link":"Exchange Best Practices","migrated-link-10":"Suggest Ideas","Common-external-link-2":"Product Support","migrated-link-11":"Attend Events","Common-external-link-1":"Resource Center","Common-training-webinars-link":"Live Training Webinars","Common-welcome-center-link":"Welcome Center","video-tutorials-link":"Video Tutorials"},"localOverride":false},"CachedAsset:text:en_US-components/community/NavbarHamburgerDropdown-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarHamburgerDropdown-1744833252935","value":{"hamburgerLabel":"Side Menu"},"localOverride":false},"CachedAsset:text:en_US-components/community/BrandLogo-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/community/BrandLogo-1744833252935","value":{"logoAlt":"Khoros","themeLogoAlt":"Brand Logo"},"localOverride":false},"CachedAsset:text:en_US-components/community/NavbarTextLinks-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarTextLinks-1744833252935","value":{"more":"More"},"localOverride":false},"CachedAsset:text:en_US-components/search/SpotlightSearchIcon-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/search/SpotlightSearchIcon-1744833252935","value":{"search":"Search"},"localOverride":false},"CachedAsset:text:en_US-components/authentication/AuthenticationLink-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/authentication/AuthenticationLink-1744833252935","value":{"title.login":"Sign In","title.registration":"Register","title.forgotPassword":"Forgot Password","title.multiAuthLogin":"Sign In"},"localOverride":false},"CachedAsset:text:en_US-components/nodes/NodeLink-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/nodes/NodeLink-1744833252935","value":{"place":"Place {name}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/EscalatedMessageBanner-1744833252935","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-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/users/UserLink-1744833252935","value":{"authorName":"View Profile: {author}","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserRank-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserRank-1744833252935","value":{"rankName":"{rankName}","userRank":"Author rank {rankName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageTime-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageTime-1744833252935","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-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolvedBadge-1744833252935","value":{"solved":"Solved"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSubject-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSubject-1744833252935","value":{"noSubject":"(no subject)"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageBody-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageBody-1744833252935","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-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageCustomFields-1744833252935","value":{"CustomField.default.label":"Value of {name}"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/QueryHandler-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/QueryHandler-1744833252935","value":{"title":"Query Handler"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageReplyButton-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageReplyButton-1744833252935","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/community/NavbarDropdownToggle-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarDropdownToggle-1744833252935","value":{"ariaLabelClosed":"Press the down arrow to open the menu"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1744833252935","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1744833252935","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/tags/TagView/TagViewChip-1744833252935","value":{"tagLabelName":"Tag name {tagName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageListMenu-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageListMenu-1744833252935","value":{"postTimeAsc":"Oldest","postTimeDesc":"Newest","kudosSumWeightAsc":"Least Liked","kudosSumWeightDesc":"Most Liked","sortTitle":"Sort By","sortedBy.item":" { itemName, select, postTimeAsc {Oldest} postTimeDesc {Newest} kudosSumWeightAsc {Least Liked} kudosSumWeightDesc {Most Liked} other {}}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1744833252935","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-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMore-1744833252935","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMorePreviousNextLinkable-1744833252935","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageView/MessageViewInline-1744833252935","value":{"bylineAuthor":"{bylineAuthor}","bylineBoard":"{bylineBoard}","anonymous":"Anonymous","place":"Place {bylineBoard}","gotoParent":"Go to parent {name}"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/nodes/NodeIcon-1744833252935":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/nodes/NodeIcon-1744833252935","value":{"contentType":"Content Type {style, select, FORUM {Forum} BLOG {Blog} TKB {Knowledge Base} IDEA {Ideas} OCCASION {Events} other {}} icon"},"localOverride":false}}}},"page":"/forums/ForumMessagePage/ForumMessagePage","query":{"boardId":"discuss","messageSubject":"rise-learning-journal--notes","messageId":"1208000"},"buildId":"FP3zsFp6DJl70wDujOvtu","runtimeConfig":{"buildInformationVisible":false,"logLevelApp":"info","logLevelMetrics":"info","openTelemetryClientEnabled":false,"openTelemetryConfigName":"articulate","openTelemetryServiceVersion":"25.3.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/MessageView/MessageViewStandard/MessageViewStandard.tsx","./components/messages/ThreadedReplyList/ThreadedReplyList.tsx","./components/messages/RelatedContentWidget/RelatedContentWidget.tsx","./components/messages/MessageListForNodeByRecentActivityWidget/MessageListForNodeByRecentActivityWidget.tsx","./components/customComponent/CustomComponentContent/TemplateContent.tsx","../shared/client/components/common/List/UnwrappedList/UnwrappedList.tsx","./components/tags/TagView/TagView.tsx","./components/tags/TagView/TagViewChip/TagViewChip.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"],"appGip":true,"scriptLoader":[]}