Opens in a new windowOpens an external websiteOpens an external website in a new window
This website utilizes technologies such as cookies to enable essential site functionality, as well as for analytics, personalization, and targeted advertising. To learn more, view the following link: Privacy Notice
I have two Javascript codes that execute when selected: one to copy a claim key, and another to add confetti.
Both seem to work when completed normally, but once I'm in full screen, neither work! Is it because of the Javascript itself?
To recreate the issue: 1. Claim key: if you have something copied, open the Storyline file in full screen, select the "Copy Claim Key" button, and paste in the text field below. If in full screen, it will paste your previous selection instead of the key (which is "S8AM83B2QDBBKKF89K3K")!
The code used for this is below, using a "ClaimKey" variable already set in the Storyline file:
var player = GetPlayer();
var text = player.GetVar("ClaimKey");
copyFunction (text);
function copyFunction(tt) {
const copyText = tt;
const textArea = document.createElement('textarea');
textArea.textContent = copyText;
document.body.append(textArea);
textArea.select();
document.execCommand("copy");
textArea.style.display = "none";
}
2. Confetti: if you select the "Add Confetti" button, the confetti will appear on the page normally. If you select full screen and the "Add Confetti" button again, exit full screen early to see the last instances of confetti that don't show up in full screen.
Two Javascript codes were used for confetti:
var duration = 5 * 1000;
var animationEnd = Date.now() + duration;
var defaults = { startVelocity: 30, spread: 360, ticks: 60, zIndex: 0 };
function randomInRange(min, max) {
return Math.random() * (max - min) + min;
}
var interval = setInterval(function() {
var timeLeft = animationEnd - Date.now();
if (timeLeft <= 0) {
return clearInterval(interval);
}
var particleCount = 50 * (timeLeft / duration);
// since particles fall down, start a bit higher than random
confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.1, 0.3), y: Math.random() - 0.2 } }));
confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.7, 0.9), y: Math.random() - 0.2 } }));
}, 250);
var confettiScript = document.createElement('script');
confettiScript.setAttribute('src','https://cdn.jsdelivr.net/npm/canvas-confetti@1.5.1/dist/confetti.browser.min.js');
document.head.appendChild(confettiScript);
*The second code is a workaround I used from this Little Man Project post to avoid updating the HTML file each time I publish :)
I'm a JavaScript beginner, so any help is appreciated! You can preview the issue here in Review, and I've attached the file for reference. Thanks!
The issue here is displayed in the browser console when going full screen- Blocked aria-hidden on a <div> element because the element that just received focus must not be hidden from assistive technology users.
Therefore I think you would achieve the result you need far simpler using the Clipboard API, which is actually built directly into vanilla JS! Try this:
var text = getVar("ClaimKey");
copyFunction(text);
function copyFunction(tt) {
navigator.clipboard.writeText(tt)
.then(() => {
console.log('Text copied to clipboard');
})
.catch(err => {
console.error('Failed to copy text: ', err);
});
}
(The GetPlayer method isn't actually needed anymore as long as you are working with the latest SL360 version.)
2. Confetti
Unfortunately I don't think the original post implemented this script particularly well, as in their version they don't seem to have created the canvas element that the confetti object would need to display on top of. (I guess it's trying to draw the object in another part of the HTML document which when you switch to full screen is getting it confused.)
The way I would approach this would be to draw a background rectangle shape onto your slide, give it an Alt Text value in the Accessibility options, and target the shape that way in your JS. Something like this:
(async () => {
var slidearea = document.querySelector('[data-acc-text*="background"]');
// We'll attempt to retrieve the existing canvas first if it exists
var canvas = document.getElementById('confetti-canvas');
if (!canvas) {
// If not, let's create it...
canvas = document.createElement('canvas');
canvas.id = 'confetti-canvas';
canvas.style.width = '100%';
canvas.style.height = '100%';
canvas.style.position = 'absolute';
canvas.style.top = '0';
canvas.style.left = '0';
slidearea.appendChild(canvas);
function resizeCanvas() {
canvas.width = canvas.offsetWidth;
canvas.height = canvas.offsetHeight;
}
// We should also listen for browser resize events to adjust the canvas size...
window.addEventListener('resize', resizeCanvas);
resizeCanvas(); // Set initial size
}
canvas.confetti = canvas.confetti || (await confetti.create(canvas, { resize: true }));
// Your existing particle effect settings...
var duration = 5 * 1000;
var animationEnd = Date.now() + duration;
var defaults = { startVelocity: 30, spread: 360, ticks: 60, zIndex: 0 };
function randomInRange(min, max) {
return Math.random() * (max - min) + min;
}
var interval = setInterval(function() {
var timeLeft = animationEnd - Date.now();
if (timeLeft <= 0) {
return clearInterval(interval);
}
var particleCount = 50 * (timeLeft / duration);
// since particles fall down, start a bit higher than random
canvas.confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.1, 0.3), y: Math.random() - 0.2 } }));
canvas.confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.7, 0.9), y: Math.random() - 0.2 } }));
}, 250);
})();
(In Storyline you're also running the script to attach the JS library to the document every time the user clicks the button. This should only be ran once, so I recommend changing the Execute JS trigger for this to activate when the Timeline Starts rather than when the button is clicked.)
Hope that helps, good luck with your project! Chris
One remaining question is that the claim key now doesn't seem to work at all? I've checked the variable to confirm that it's the same name in the file, but would there be any other reason why I can't copy the key using this code for Execute JavaScript?
"}},"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\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/NavbarDropdownToggle\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/NavbarDropdownToggle-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/users/UserAvatar\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/ranks/UserRankLabel\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"components/attachments/AttachmentView/AttachmentViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"components/tags/TagView/TagViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/AcceptedSolutionButton\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageListMenu\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageListMenu-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/Pager/PagerLoadMore\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1744833251000"}],"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/MessageView/MessageViewInline\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1744833251000"}],"message({\"id\":\"message:1199815\"})":{"__ref":"AcceptedSolutionMessage:message:1199815"},"message({\"id\":\"message:1200304\"})":{"__ref":"ForumReplyMessage:message:1200304"},"message({\"id\":\"message:1200788\"})":{"__ref":"ForumReplyMessage:message:1200788"},"message({\"id\":\"message:1199816\"})":{"__ref":"ForumReplyMessage:message:1199816"},"cachedText({\"lastModified\":\"1744833251000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/nodes/NodeIcon\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/nodes/NodeIcon-1744833251000"}]},"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-1745400298482":{"__typename":"CachedAsset","id":"pages-1745400298482","value":[{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"BlogViewAllPostsPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId/all-posts/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"CasePortalPage","type":"CASE_PORTAL","urlPath":"/caseportal","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"CreateGroupHubPage","type":"GROUP_HUB","urlPath":"/groups/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"CaseViewPage","type":"CASE_DETAILS","urlPath":"/case/:caseId/:caseNumber","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"InboxPage","type":"COMMUNITY","urlPath":"/inbox","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"HelpFAQPage","type":"COMMUNITY","urlPath":"/help","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"IdeaMessagePage","type":"IDEA_POST","urlPath":"/idea/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"IdeaViewAllIdeasPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/all-ideas/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"LoginPage","type":"USER","urlPath":"/signin","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"BlogPostPage","type":"BLOG","urlPath":"/category/:categoryId/blogs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ThemeEditorPage","type":"COMMUNITY","urlPath":"/designer/themes","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TkbViewAllArticlesPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId/all-articles/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"OccasionEditPage","type":"EVENT","urlPath":"/event/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"OAuthAuthorizationAllowPage","type":"USER","urlPath":"/auth/authorize/allow","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"PageEditorPage","type":"COMMUNITY","urlPath":"/designer/pages","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"PostPage","type":"COMMUNITY","urlPath":"/category/:categoryId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ForumBoardPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TkbBoardPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"EventPostPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"UserBadgesPage","type":"COMMUNITY","urlPath":"/users/:login/:userId/badges","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"GroupHubMembershipAction","type":"GROUP_HUB","urlPath":"/membership/join/:nodeId/:membershipType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"MaintenancePage","type":"COMMUNITY","urlPath":"/maintenance","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"IdeaReplyPage","type":"IDEA_REPLY","urlPath":"/idea/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"UserSettingsPage","type":"USER","urlPath":"/mysettings/:userSettingsTab","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"GroupHubsPage","type":"GROUP_HUB","urlPath":"/groups","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ForumPostPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"OccasionRsvpActionPage","type":"OCCASION","urlPath":"/event/:boardId/:messageSubject/:messageId/rsvp/:responseType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"VerifyUserEmailPage","type":"USER","urlPath":"/verifyemail/:userId/:verifyEmailToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"AllOccasionsPage","type":"OCCASION","urlPath":"/category/:categoryId/events/:boardId/all-events/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"EventBoardPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TkbReplyPage","type":"TKB_REPLY","urlPath":"/kb/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"IdeaBoardPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"CommunityGuideLinesPage","type":"COMMUNITY","urlPath":"/communityguidelines","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"CaseCreatePage","type":"SALESFORCE_CASE_CREATION","urlPath":"/caseportal/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TkbEditPage","type":"TKB","urlPath":"/kb/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ForgotPasswordPage","type":"USER","urlPath":"/forgotpassword","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"IdeaEditPage","type":"IDEA","urlPath":"/idea/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TagPage","type":"COMMUNITY","urlPath":"/tag/:tagName","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"BlogBoardPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"OccasionMessagePage","type":"OCCASION_TOPIC","urlPath":"/event/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ManageContentPage","type":"COMMUNITY","urlPath":"/managecontent","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ClosedMembershipNodeNonMembersPage","type":"GROUP_HUB","urlPath":"/closedgroup/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"CommunityPage","type":"COMMUNITY","urlPath":"/","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ForumMessagePage","type":"FORUM_TOPIC","urlPath":"/discussions/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"IdeaPostPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"BlogMessagePage","type":"BLOG_ARTICLE","urlPath":"/blog/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"RegistrationPage","type":"USER","urlPath":"/register","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"EditGroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ForumEditPage","type":"FORUM","urlPath":"/discussions/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ResetPasswordPage","type":"USER","urlPath":"/resetpassword/:userId/:resetPasswordToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TkbMessagePage","type":"TKB_ARTICLE","urlPath":"/kb/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"BlogEditPage","type":"BLOG","urlPath":"/blog/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ManageUsersPage","type":"USER","urlPath":"/users/manage/:tab?/:manageUsersTab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ForumReplyPage","type":"FORUM_REPLY","urlPath":"/discussions/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"PrivacyPolicyPage","type":"COMMUNITY","urlPath":"/privacypolicy","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"NotificationPage","type":"COMMUNITY","urlPath":"/notifications","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"UserPage","type":"USER","urlPath":"/users/:login/:userId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"HealthCheckPage","type":"COMMUNITY","urlPath":"/health","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"OccasionReplyPage","type":"OCCASION_REPLY","urlPath":"/event/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ManageMembersPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/manage/:tab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"SearchResultsPage","type":"COMMUNITY","urlPath":"/search","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"BlogReplyPage","type":"BLOG_REPLY","urlPath":"/blog/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"GroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TermsOfServicePage","type":"COMMUNITY","urlPath":"/termsofservice","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"CategoryPage","type":"CATEGORY","urlPath":"/category/:categoryId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"ForumViewAllTopicsPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/all-topics/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"localOverride":null,"page":{"id":"TkbPostPage","type":"TKB","urlPath":"/category/:categoryId/kbs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1745400298482,"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:6":{"__typename":"Rank","id":"rank:6","position":5,"name":"Community Member","color":"333333","icon":null,"rankStyle":"TEXT"},"User:user:29974":{"__typename":"User","id":"user:29974","uid":29974,"login":"jliu","deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C873534a8-e1f2-4d85-aa4c-981f174e2834"},"rank":{"__ref":"Rank:rank:6"},"email":"","messagesCount":4,"biography":null,"topicsCount":2,"kudosReceivedCount":1,"kudosGivenCount":2,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2022-08-09T11:14:15.000-07:00","confirmEmailStatus":null},"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:29974"},"GroupHub:grouphub:javascript":{"__typename":"GroupHub","id":"grouphub:javascript","entityType":"GROUP_HUB","displayId":"javascript","nodeType":"grouphub","depth":3,"title":"JavaScript","shortTitle":"JavaScript","parent":{"__ref":"Category:category:join-groups"}},"Category:category:top":{"__typename":"Category","id":"category:top","entityType":"CATEGORY","displayId":"top","nodeType":"category","depth":0,"title":"Top","shortTitle":"Top"},"Category:category:connect":{"__typename":"Category","id":"category:connect","entityType":"CATEGORY","displayId":"connect","nodeType":"category","depth":1,"parent":{"__ref":"Category:category:top"},"title":"Connect","shortTitle":"Connect","categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Category:category:join-groups":{"__typename":"Category","id":"category:join-groups","entityType":"CATEGORY","displayId":"join-groups","nodeType":"category","depth":2,"parent":{"__ref":"Category:category:connect"},"title":"Join Groups","shortTitle":"Join Groups","categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Forum:board:javascriptforum-board":{"__typename":"Forum","id":"board:javascriptforum-board","entityType":"FORUM","displayId":"javascriptforum-board","nodeType":"board","depth":4,"conversationStyle":"FORUM","repliesProperties":{"__typename":"RepliesProperties","sortOrder":"PUBLISH_TIME","repliesFormat":"threaded"},"tagProperties":{"__typename":"TagNodeProperties","tagsEnabled":{"__typename":"PolicyResult","failureReason":null}},"requireTags":false,"tagType":"FREEFORM_ONLY","description":"","title":"JavaScript","shortTitle":"Forum","parent":{"__ref":"GroupHub:grouphub:javascript"},"ancestors":{"__typename":"CoreNodeConnection","edges":[{"__typename":"CoreNodeEdge","node":{"__ref":"Community:community:rwgqn69235"}},{"__typename":"CoreNodeEdge","node":{"__ref":"Category:category:connect"}},{"__typename":"CoreNodeEdge","node":{"__ref":"Category:category:join-groups"}},{"__typename":"CoreNodeEdge","node":{"__ref":"GroupHub:grouphub:javascript"}}]},"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":[]}}},"eventPath":"grouphub:javascript/category:join-groups/category:connect/community:rwgqn69235board:javascriptforum-board/","avatar":null},"ForumTopicMessage:message:1199723":{"__typename":"ForumTopicMessage","uid":1199723,"subject":"Javascript not working in full screen","id":"message:1199723","revisionNum":3,"repliesCount":5,"author":{"__ref":"User:user:29974"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:javascriptforum-board"},"conversation":{"__ref":"Conversation:conversation:1199723"},"readOnly":false,"editFrozen":false,"moderationData":{"__ref":"ModerationData:moderation_data:1199723"},"body":"
Hi all!
I have two Javascript codes that execute when selected: one to copy a claim key, and another to add confetti.
Both seem to work when completed normally, but once I'm in full screen, neither work! Is it because of the Javascript itself?
To recreate the issue: 1. Claim key: if you have something copied, open the Storyline file in full screen, select the \"Copy Claim Key\" button, and paste in the text field below. If in full screen, it will paste your previous selection instead of the key (which is \"S8AM83B2QDBBKKF89K3K\")!
The code used for this is below, using a \"ClaimKey\" variable already set in the Storyline file:
var player = GetPlayer();\nvar text = player.GetVar(\"ClaimKey\");\ncopyFunction (text);\n\nfunction copyFunction(tt) {\n \n const copyText = tt;\n const textArea = document.createElement('textarea');\n textArea.textContent = copyText;\n document.body.append(textArea);\n textArea.select();\n document.execCommand(\"copy\");\n textArea.style.display = \"none\";\n}
2. Confetti: if you select the \"Add Confetti\" button, the confetti will appear on the page normally. If you select full screen and the \"Add Confetti\" button again, exit full screen early to see the last instances of confetti that don't show up in full screen.
var confettiScript = document.createElement('script');\nconfettiScript.setAttribute('src','https://cdn.jsdelivr.net/npm/canvas-confetti@1.5.1/dist/confetti.browser.min.js');\ndocument.head.appendChild(confettiScript);
*The second code is a workaround I used from this Little Man Project post to avoid updating the HTML file each time I publish :)
I'm a JavaScript beginner, so any help is appreciated! You can preview the issue here in Review, and I've attached the file for reference. Thanks!
","body@stringLength":"3212","rawBody":"
Hi all!
I have two Javascript codes that execute when selected: one to copy a claim key, and another to add confetti.
Both seem to work when completed normally, but once I'm in full screen, neither work! Is it because of the Javascript itself?
To recreate the issue: 1. Claim key: if you have something copied, open the Storyline file in full screen, select the \"Copy Claim Key\" button, and paste in the text field below. If in full screen, it will paste your previous selection instead of the key (which is \"S8AM83B2QDBBKKF89K3K\")!
The code used for this is below, using a \"ClaimKey\" variable already set in the Storyline file:
var player = GetPlayer();\nvar text = player.GetVar(\"ClaimKey\");\ncopyFunction (text);\n\nfunction copyFunction(tt) {\n \n const copyText = tt;\n const textArea = document.createElement('textarea');\n textArea.textContent = copyText;\n document.body.append(textArea);\n textArea.select();\n document.execCommand(\"copy\");\n textArea.style.display = \"none\";\n}
2. Confetti: if you select the \"Add Confetti\" button, the confetti will appear on the page normally. If you select full screen and the \"Add Confetti\" button again, exit full screen early to see the last instances of confetti that don't show up in full screen.
The issue here is displayed in the browser console when going full screen- Blocked aria-hidden on a <div> element because the element that just received focus must not be hidden from assistive technology users.
Therefore I think you would achieve the result you need far simpler using the Clipboard API, which is actually built directly into vanilla JS! Try this:
var text = getVar(\"ClaimKey\");\ncopyFunction(text);\n\nfunction copyFunction(tt) {\n navigator.clipboard.writeText(tt)\n .then(() => {\n console.log('Text copied to clipboard');\n })\n .catch(err => {\n console.error('Failed to copy text: ', err);\n });\n}
(The GetPlayer method isn't actually needed anymore as long as you are working with the latest SL360 version.)
2. Confetti
Unfortunately I don't think the original post implemented this script particularly well, as in their version they don't seem to have created the canvas element that the confetti object would need to display on top of. (I guess it's trying to draw the object in another part of the HTML document which when you switch to full screen is getting it confused.)
The way I would approach this would be to draw a background rectangle shape onto your slide, give it an Alt Text value in the Accessibility options, and target the shape that way in your JS. Something like this:
(async () => {\n var slidearea = document.querySelector('[data-acc-text*=\"background\"]');\n\n // We'll attempt to retrieve the existing canvas first if it exists\n var canvas = document.getElementById('confetti-canvas');\n\n if (!canvas) {\n // If not, let's create it...\n canvas = document.createElement('canvas');\n canvas.id = 'confetti-canvas';\n canvas.style.width = '100%';\n canvas.style.height = '100%';\n canvas.style.position = 'absolute';\n canvas.style.top = '0';\n canvas.style.left = '0';\n\n slidearea.appendChild(canvas);\n\n function resizeCanvas() {\n canvas.width = canvas.offsetWidth;\n canvas.height = canvas.offsetHeight;\n }\n\n // We should also listen for browser resize events to adjust the canvas size...\n window.addEventListener('resize', resizeCanvas);\n resizeCanvas(); // Set initial size\n }\n\n canvas.confetti = canvas.confetti || (await confetti.create(canvas, { resize: true }));\n\n // Your existing particle effect settings...\n var duration = 5 * 1000;\n var animationEnd = Date.now() + duration;\n var defaults = { startVelocity: 30, spread: 360, ticks: 60, zIndex: 0 };\n\n function randomInRange(min, max) {\n return Math.random() * (max - min) + min;\n }\n\n var interval = setInterval(function() {\n var timeLeft = animationEnd - Date.now();\n if (timeLeft <= 0) {\n return clearInterval(interval);\n }\n var particleCount = 50 * (timeLeft / duration);\n // since particles fall down, start a bit higher than random\n canvas.confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.1, 0.3), y: Math.random() - 0.2 } }));\n canvas.confetti(Object.assign({}, defaults, { particleCount, origin: { x: randomInRange(0.7, 0.9), y: Math.random() - 0.2 } }));\n }, 250);\n})();
(In Storyline you're also running the script to attach the JS library to the document every time the user clicks the button. This should only be ran once, so I recommend changing the Execute JS trigger for this to activate when the Timeline Starts rather than when the button is clicked.)
Hope that helps, good luck with your project! Chris
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"209","kudosSumWeight":1,"postTime":"2024-09-14T01:14:56.294-07:00","lastPublishTime":"2024-09-14T01:37:54.793-07:00","solution":true,"metrics":{"__typename":"MessageMetrics","views":0},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_REPLY","eventPath":"grouphub:javascript/category:join-groups/category:connect/community:rwgqn69235board:javascriptforum-board/message:1199723/message:1199815","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDM5OjF8aW50LDEyMDAzMDQsMTIwMDMwNA","node":{"__ref":"ForumReplyMessage:message:1200304"}}]},"body@stripHtml({\"removeProcessingText\":true,\"removeSpoilerMarkup\":true,\"removeTocMarkup\":true,\"truncateLength\":200})@stringLength":"209","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"videos":{"__typename":"VideoConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"customFields":[]},"ModerationData:moderation_data:1200304":{"__typename":"ModerationData","id":"moderation_data:1200304","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1200304":{"__typename":"ForumReplyMessage","uid":1200304,"id":"message:1200304","revisionNum":1,"author":{"__ref":"User:user:29974"},"readOnly":false,"repliesCount":2,"depth":2,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:javascriptforum-board"},"parent":{"__ref":"AcceptedSolutionMessage:message:1199815"},"conversation":{"__ref":"Conversation:conversation:1199723"},"subject":"Re: Javascript not working in full screen","moderationData":{"__ref":"ModerationData:moderation_data:1200304"},"body":"
One remaining question is that the claim key now doesn't seem to work at all? I've checked the variable to confirm that it's the same name in the file, but would there be any other reason why I can't copy the key using this code for Execute JavaScript?
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"postTime":"2024-09-18T10:26:18.568-07:00","lastPublishTime":"2024-09-18T10:26:18.568-07:00","metrics":{"__typename":"MessageMetrics","views":87},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"grouphub:javascript/category:join-groups/category:connect/community:rwgqn69235board:javascriptforum-board/message:1199723/message:1200304","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDM5OjF8aW50LDEyMDA3ODgsMTIwMDc4OA","node":{"__ref":"ForumReplyMessage:message:1200788"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1200788":{"__typename":"ModerationData","id":"moderation_data:1200788","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1200788":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:1257245"},"id":"message:1200788","revisionNum":1,"uid":1200788,"depth":3,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:javascriptforum-board"},"parent":{"__ref":"ForumReplyMessage:message:1200304"},"conversation":{"__ref":"Conversation:conversation:1199723"},"subject":"Re: Javascript not working in full screen","moderationData":{"__ref":"ModerationData:moderation_data:1200788"},"body":"
That appears to be an issue with Review360 blocking the Clipboard API function for whatever reason, not with the actual script itself.
Try previewing the project in Storyline, or publish elsewhere e.g. onto your own LMS.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":1,"repliesCount":1,"postTime":"2024-09-23T02:38:56.591-07:00","lastPublishTime":"2024-09-23T02:38:56.591-07:00","metrics":{"__typename":"MessageMetrics","views":70},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"grouphub:javascript/category:join-groups/category:connect/community:rwgqn69235board:javascriptforum-board/message:1199723/message:1200788","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1199816":{"__typename":"ModerationData","id":"moderation_data:1199816","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1199816":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:1257245"},"id":"message:1199816","revisionNum":2,"uid":1199816,"depth":1,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:javascriptforum-board"},"parent":{"__ref":"ForumTopicMessage:message:1199723"},"conversation":{"__ref":"Conversation:conversation:1199723"},"subject":"Re: Javascript not working in full screen","moderationData":{"__ref":"ModerationData:moderation_data:1199816"},"body":"
Here's your updated project file:
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"41","kudosSumWeight":1,"repliesCount":0,"postTime":"2024-09-14T01:15:56.613-07:00","lastPublishTime":"2024-09-14T01:20:00.424-07:00","metrics":{"__typename":"MessageMetrics","views":104},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"grouphub:javascript/category:join-groups/category:connect/community:rwgqn69235board:javascriptforum-board/message:1199723/message:1199816","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[{"__typename":"AttachmentEdge","cursor":"MjUuM3wyLjF8b3w1fF9OVl98MQ","node":{"__ref":"Attachment:{\"id\":\"attachment:message1199816AttachmentNumber1\",\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/attachments/rwgqn69235/javascriptforum-board/36/1/javascript-test-CH.story\"}"}}],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"User:user:54772":{"__typename":"User","id":"user:54772","uid":54772,"login":"MattBotelho","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2022-10-24T05:46:11.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C6c322083-6884-4a0e-a6b4-25b779b257b6"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":25,"kudosGivenCount":6,"kudosReceivedCount":8,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:54772"},"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:1197999":{"__typename":"ForumTopicMessage","uid":1197999,"subject":"JavaScript not working","id":"message:1197999","revisionNum":1,"repliesCount":5,"author":{"__ref":"User:user:54772"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1197999"},"moderationData":{"__ref":"ModerationData:moderation_data:1197999"},"postTime":"2024-08-30T07:07:40.815-07:00","lastPublishTime":"2024-08-30T07:07:40.815-07:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":280},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1197999"},"Conversation:conversation:1197999":{"__typename":"Conversation","id":"conversation:1197999","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1197999"},"lastPostingActivityTime":"2024-08-30T08:35:22.325-07:00","lastPostTime":"2024-08-30T08:35:22.325-07:00"},"ModerationData:moderation_data:1197999":{"__typename":"ModerationData","id":"moderation_data:1197999","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1197999":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1197999","relatedMessage":{"__ref":"ForumTopicMessage:message:1197999"}},"User:user:698371":{"__typename":"User","id":"user:698371","uid":698371,"login":"NikkiLowin-3dc2","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2023-06-22T09:51:14.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C5c3e41e95d07c502356e614e"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":2,"kudosGivenCount":0,"kudosReceivedCount":1,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:698371"},"ForumTopicMessage:message:1218359":{"__typename":"ForumTopicMessage","uid":1218359,"subject":"JavaScript help","id":"message:1218359","revisionNum":1,"repliesCount":6,"author":{"__ref":"User:user:698371"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1218359"},"moderationData":{"__ref":"ModerationData:moderation_data:1218359"},"postTime":"2025-02-27T11:39:24.624-08:00","lastPublishTime":"2025-02-27T11:39:24.624-08:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":161},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1218359"},"Conversation:conversation:1218359":{"__typename":"Conversation","id":"conversation:1218359","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1218359"},"lastPostingActivityTime":"2025-03-11T02:21:31.410-07:00","lastPostTime":"2025-03-11T02:21:31.410-07:00"},"ModerationData:moderation_data:1218359":{"__typename":"ModerationData","id":"moderation_data:1218359","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1218359":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1218359","relatedMessage":{"__ref":"ForumTopicMessage:message:1218359"}},"User:user:990221":{"__typename":"User","id":"user:990221","uid":990221,"login":"PaulGolightly","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2021-06-21T09:27:08.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7Cccd74cd6-ffc4-423b-965f-91220220e75e"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":2,"kudosGivenCount":0,"kudosReceivedCount":1,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:990221"},"ForumTopicMessage:message:1203839":{"__typename":"ForumTopicMessage","uid":1203839,"subject":"JavaScript not working at all?","id":"message:1203839","revisionNum":1,"repliesCount":2,"author":{"__ref":"User:user:990221"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1203839"},"moderationData":{"__ref":"ModerationData:moderation_data:1203839"},"postTime":"2024-10-17T09:47:42.367-07:00","lastPublishTime":"2024-10-17T09:47:42.367-07:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":129},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1203839"},"Conversation:conversation:1203839":{"__typename":"Conversation","id":"conversation:1203839","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1203839"},"lastPostingActivityTime":"2024-10-18T03:30:55.872-07:00","lastPostTime":"2024-10-18T03:30:55.872-07:00"},"ModerationData:moderation_data:1203839":{"__typename":"ModerationData","id":"moderation_data:1203839","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1203839":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1203839","relatedMessage":{"__ref":"ForumTopicMessage:message:1203839"}},"User:user:424209":{"__typename":"User","id":"user:424209","uid":424209,"login":"ShannonPage-27d","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2022-04-08T08:01:48.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C866e4c9d-8473-4bd0-b06a-5501bf774fd2"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":55,"kudosGivenCount":16,"kudosReceivedCount":36,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:424209"},"ForumTopicMessage:message:1202716":{"__typename":"ForumTopicMessage","uid":1202716,"subject":"Magic JavaScript switch?","id":"message:1202716","revisionNum":2,"repliesCount":7,"author":{"__ref":"User:user:424209"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:javascriptforum-board"},"conversation":{"__ref":"Conversation:conversation:1202716"},"moderationData":{"__ref":"ModerationData:moderation_data:1202716"},"postTime":"2024-10-07T11:51:10.386-07:00","lastPublishTime":"2024-10-07T12:34:31.309-07:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":427},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"grouphub:javascript/category:join-groups/category:connect/community:rwgqn69235board:javascriptforum-board/message:1202716"},"Conversation:conversation:1202716":{"__typename":"Conversation","id":"conversation:1202716","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1202716"},"lastPostingActivityTime":"2024-12-06T07:26:16.177-08:00","lastPostTime":"2024-12-06T07:26:16.177-08:00"},"ModerationData:moderation_data:1202716":{"__typename":"ModerationData","id":"moderation_data:1202716","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1202716":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1202716","relatedMessage":{"__ref":"ForumTopicMessage:message:1202716"}},"Rank:rank:2":{"__typename":"Rank","id":"rank:2","position":1,"name":"Staff","color":"00AEEF","icon":null,"rankStyle":"FILLED"},"User:user:50280":{"__typename":"User","id":"user:50280","uid":50280,"login":"DavidAnderson","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2010-10-22T10:58:01.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://community.articulate.com/t5/s/rwgqn69235/images/dS01MDI4MC1ZRUNVR2o?image-coordinates=0%2C0%2C800%2C800"},"rank":{"__ref":"Rank:rank:2"},"messagesCount":9353,"kudosGivenCount":1799,"kudosReceivedCount":2106,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":1,"entityType":"USER","eventPath":"community:rwgqn69235/user:50280"},"AssociatedImage:{\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMDctVHRlaGtH?image-coordinates=0%2C0%2C160%2C160\"}":{"__typename":"AssociatedImage","url":"https://community.articulate.com/t5/s/rwgqn69235/images/bi0xMDctVHRlaGtH?image-coordinates=0%2C0%2C160%2C160","mimeType":"image/png"},"Tkb:board:storyline-360-essentials":{"__typename":"Tkb","id":"board:storyline-360-essentials","entityType":"TKB","displayId":"storyline-360-essentials","nodeType":"board","depth":3,"conversationStyle":"TKB","title":"Storyline Essentials","shortTitle":"Storyline Essentials","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/bi0xMDctVHRlaGtH?image-coordinates=0%2C0%2C160%2C160\"}"},"description":"Deeper dive into the core features.","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:storyline-360-essentials/"},"TkbTopicMessage:message:1220149":{"__typename":"TkbTopicMessage","uid":1220149,"subject":"Working with Layers in Storyline","id":"message:1220149","revisionNum":3,"repliesCount":0,"author":{"__ref":"User:user:50280"},"depth":0,"hasGivenKudo":false,"helpful":null,"board":{"__ref":"Tkb:board:storyline-360-essentials"},"conversation":{"__ref":"Conversation:conversation:1220149"},"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:1220149"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" \n In this movie, you’ll learn how to use slide layers in Storyline 360 to create engaging interactions and dynamic branched scenarios. ","postTime":"2025-03-13T17:47:04.462-07:00","lastPublishTime":"2025-03-13T17:48:17.469-07:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":196},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:storyline-360-essentials/message:1220149"},"Conversation:conversation:1220149":{"__typename":"Conversation","id":"conversation:1220149","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1220149"},"lastPostingActivityTime":"2025-03-13T17:48:17.469-07:00","lastPostTime":"2025-03-13T17:47:04.462-07:00"},"ModerationData:moderation_data:1220149":{"__typename":"ModerationData","id":"moderation_data:1220149","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1220149":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1220149","relatedMessage":{"__ref":"TkbTopicMessage:message:1220149"}},"User:user:946038":{"__typename":"User","id":"user:946038","uid":946038,"login":"TomSchultz-1340","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2018-01-11T07:48:53.000-08:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/auth0%7C5a5387fcd7735f28bf3feb16"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":8,"kudosGivenCount":1,"kudosReceivedCount":0,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":1,"entityType":"USER","eventPath":"community:rwgqn69235/user:946038"},"ForumTopicMessage:message:1211498":{"__typename":"ForumTopicMessage","uid":1211498,"subject":"Screen Reader problem - Storyline V3.95.33670.0 Worked in June '24","id":"message:1211498","revisionNum":1,"repliesCount":2,"author":{"__ref":"User:user:946038"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1211498"},"moderationData":{"__ref":"ModerationData:moderation_data:1211498"},"postTime":"2025-01-02T13:12:29.751-08:00","lastPublishTime":"2025-01-02T13:12:29.751-08:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":107},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1211498"},"Conversation:conversation:1211498":{"__typename":"Conversation","id":"conversation:1211498","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1211498"},"lastPostingActivityTime":"2025-01-06T05:39:39.435-08:00","lastPostTime":"2025-01-06T05:39:39.435-08:00"},"ModerationData:moderation_data:1211498":{"__typename":"ModerationData","id":"moderation_data:1211498","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1211498":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1211498","relatedMessage":{"__ref":"ForumTopicMessage:message:1211498"}},"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":368,"kudosGivenCount":77,"kudosReceivedCount":1649,"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:1216004":{"__typename":"TkbTopicMessage","uid":1216004,"subject":"Working with Subject Matter Experts","id":"message:1216004","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:1216004"},"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:1216004"},"teaser@stripHtml({\"removeProcessingText\":false,\"truncateLength\":200})":" Discover best practices for working with subject matter experts and how to use Articulate Review 360 to streamline your course review process. \n \n ","postTime":"2025-02-07T09:16:08.697-08:00","lastPublishTime":"2025-02-07T09:16:08.697-08:00","readOnly":true,"introduction":"","metrics":{"__typename":"MessageMetrics","views":162},"placeholder":false,"originalMessageForPlaceholder":null,"entityType":"TKB_ARTICLE","eventPath":"category:training-tutorials/category:learn/community:rwgqn69235board:instructional-design/message:1216004"},"Conversation:conversation:1216004":{"__typename":"Conversation","id":"conversation:1216004","solved":false,"topic":{"__ref":"TkbTopicMessage:message:1216004"},"lastPostingActivityTime":"2025-02-07T09:16:08.697-08:00","lastPostTime":"2025-02-07T09:16:08.697-08:00"},"ModerationData:moderation_data:1216004":{"__typename":"ModerationData","id":"moderation_data:1216004","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1216004":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1216004","relatedMessage":{"__ref":"TkbTopicMessage:message:1216004"}},"User:user:688997":{"__typename":"User","id":"user:688997","uid":688997,"login":"StephanieVog339","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2024-05-02T06:35:18.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C3155c181-9b03-4b73-b25c-556e8c64e85a"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":3,"kudosGivenCount":0,"kudosReceivedCount":0,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":1,"entityType":"USER","eventPath":"community:rwgqn69235/user:688997"},"ForumTopicMessage:message:1207904":{"__typename":"ForumTopicMessage","uid":1207904,"subject":"Import for on screen translation not working","id":"message:1207904","revisionNum":1,"repliesCount":3,"author":{"__ref":"User:user:688997"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1207904"},"moderationData":{"__ref":"ModerationData:moderation_data:1207904"},"postTime":"2024-11-25T07:55:36.980-08:00","lastPublishTime":"2024-11-25T07:55:36.980-08:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":46},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1207904"},"Conversation:conversation:1207904":{"__typename":"Conversation","id":"conversation:1207904","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1207904"},"lastPostingActivityTime":"2024-12-11T05:47:50.033-08:00","lastPostTime":"2024-12-11T05:47:50.033-08:00"},"ModerationData:moderation_data:1207904":{"__typename":"ModerationData","id":"moderation_data:1207904","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1207904":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1207904","relatedMessage":{"__ref":"ForumTopicMessage:message:1207904"}},"User:user:1523658":{"__typename":"User","id":"user:1523658","uid":1523658,"login":"Andrew35","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2024-12-16T08:15:15.886-08:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C044a00b8-72f3-48dd-ab40-2c1cb558bb05"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":17,"kudosGivenCount":2,"kudosReceivedCount":1,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:1523658"},"ForumTopicMessage:message:1212898":{"__typename":"ForumTopicMessage","uid":1212898,"subject":"Javascript for sending an email","id":"message:1212898","revisionNum":1,"repliesCount":6,"author":{"__ref":"User:user:1523658"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1212898"},"moderationData":{"__ref":"ModerationData:moderation_data:1212898"},"postTime":"2025-01-15T02:24:15.508-08:00","lastPublishTime":"2025-01-15T02:24:15.508-08:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":132},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1212898"},"Conversation:conversation:1212898":{"__typename":"Conversation","id":"conversation:1212898","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1212898"},"lastPostingActivityTime":"2025-01-15T06:45:45.154-08:00","lastPostTime":"2025-01-15T06:45:45.154-08:00"},"ModerationData:moderation_data:1212898":{"__typename":"ModerationData","id":"moderation_data:1212898","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1212898":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1212898","relatedMessage":{"__ref":"ForumTopicMessage:message:1212898"}},"User:user:138871":{"__typename":"User","id":"user:138871","uid":138871,"login":"SaraJK","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2023-10-11T21:13:11.000-07:00","confirmEmailStatus":null,"registrationAccessLevel":null,"ssoRegistrationFields":[]},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://api.articulate.com/id/v1/avatars/aid%7C426c9e2d-2640-4fc4-97b1-a6d9b2ffc1dd"},"rank":{"__ref":"Rank:rank:6"},"messagesCount":1,"kudosGivenCount":3,"kudosReceivedCount":0,"kudosWeight":1,"ssoId":null,"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:rwgqn69235/user:138871"},"ForumTopicMessage:message:1199462":{"__typename":"ForumTopicMessage","uid":1199462,"subject":"Full-screen option for embedded Vimeo videos not working","id":"message:1199462","revisionNum":1,"repliesCount":3,"author":{"__ref":"User:user:138871"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:discuss"},"conversation":{"__ref":"Conversation:conversation:1199462"},"moderationData":{"__ref":"ModerationData:moderation_data:1199462"},"postTime":"2024-09-12T03:57:34.214-07:00","lastPublishTime":"2024-09-12T03:57:34.214-07:00","readOnly":false,"metrics":{"__typename":"MessageMetrics","views":153},"placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"entityType":"FORUM_TOPIC","eventPath":"category:connect/community:rwgqn69235board:discuss/message:1199462"},"Conversation:conversation:1199462":{"__typename":"Conversation","id":"conversation:1199462","solved":true,"topic":{"__ref":"ForumTopicMessage:message:1199462"},"lastPostingActivityTime":"2024-09-12T07:16:35.202-07:00","lastPostTime":"2024-09-12T07:16:35.202-07:00"},"ModerationData:moderation_data:1199462":{"__typename":"ModerationData","id":"moderation_data:1199462","status":"APPROVED","rejectReason":null},"RelatedContentMessage:RelatedContentMessage:1199462":{"__typename":"RelatedContentMessage","id":"RelatedContentMessage:1199462","relatedMessage":{"__ref":"ForumTopicMessage:message:1199462"}},"QueryVariables:MessageSolutions":{"__typename":"QueryVariables","id":"MessageSolutions","value":{"first":10,"constraints":{"topicId":{"eq":"message:1199723"},"solution":{"eq":true}},"sorts":{"postTime":{"direction":"ASC"}},"useAvatar":true,"useAuthorLogin":true,"useAuthorRank":false,"useBody":true,"useKudosCount":false,"useTimeToRead":false,"useMedia":true,"useRepliesCount":false,"useSearchSnippet":false,"useAcceptedSolutionButton":true,"useSolvedBadge":false,"useAttachments":true,"useTags":false,"useUserHoverCard":false,"useNodeHoverCard":false,"usePreviewSubjectModal":false,"useMessageStatus":false}},"CachedAsset:text:en_US-components/community/Navbar-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/community/Navbar-1744833251000","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-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarHamburgerDropdown-1744833251000","value":{"hamburgerLabel":"Side Menu"},"localOverride":false},"CachedAsset:text:en_US-components/community/BrandLogo-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/community/BrandLogo-1744833251000","value":{"logoAlt":"Khoros","themeLogoAlt":"Brand Logo"},"localOverride":false},"CachedAsset:text:en_US-components/community/NavbarTextLinks-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarTextLinks-1744833251000","value":{"more":"More"},"localOverride":false},"CachedAsset:text:en_US-components/search/SpotlightSearchIcon-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/search/SpotlightSearchIcon-1744833251000","value":{"search":"Search"},"localOverride":false},"CachedAsset:text:en_US-components/authentication/AuthenticationLink-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/authentication/AuthenticationLink-1744833251000","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-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/nodes/NodeLink-1744833251000","value":{"place":"Place {name}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/EscalatedMessageBanner-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/EscalatedMessageBanner-1744833251000","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-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/users/UserLink-1744833251000","value":{"authorName":"View Profile: {author}","anonymous":"Anonymous"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserRank-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserRank-1744833251000","value":{"rankName":"{rankName}","userRank":"Author rank {rankName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageTime-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageTime-1744833251000","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-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolvedBadge-1744833251000","value":{"solved":"Solved"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSubject-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSubject-1744833251000","value":{"noSubject":"(no subject)"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageBody-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageBody-1744833251000","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-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageCustomFields-1744833251000","value":{"CustomField.default.label":"Value of {name}"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/QueryHandler-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/QueryHandler-1744833251000","value":{"title":"Query Handler"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageReplyButton-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageReplyButton-1744833251000","value":{"repliesCount":"{count}","title":"Reply","title@board:BLOG@message:root":"Comment","title@board:TKB@message:root":"Comment","title@board:IDEA@message:root":"Comment","title@board:OCCASION@message:root":"Comment"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageSolutionList-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageSolutionList-1744833251000","value":{"emptyDescription":"No has been message solutions yet"},"localOverride":false},"CachedAsset:text:en_US-components/community/NavbarDropdownToggle-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarDropdownToggle-1744833251000","value":{"ariaLabelClosed":"Press the down arrow to open the menu"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1744833251000","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1744833251000","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"CachedAsset:text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1744833251000","value":{"errorTitle":"Failed!","previewFile":"Preview File","downloadFile":"Download File {name}","removeFile":"Remove File {name}","errorBadExtension":"This file does not have a valid extension. \"{extensions}\" are the valid extensions.","errorFileEmpty":"This file is empty or does not exist.","errorTooLarge":"The maximum file size is: {maxFileSize}.","errorTooMany":"Too many attachments. The maximum number of attachments per message is: {maxAttachmentCount, number, integer}.","errorDuplicate":"This file is already attached."},"localOverride":false},"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/tags/TagView/TagViewChip-1744833251000","value":{"tagLabelName":"Tag name {tagName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1744833251000","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-components/messages/MessageListMenu-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageListMenu-1744833251000","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-shared/client/components/common/Pager/PagerLoadMore-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Pager/PagerLoadMore-1744833251000","value":{"loadMore":"Show More"},"localOverride":false},"CachedAsset:text:en_US-components/messages/MessageView/MessageViewInline-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/MessageView/MessageViewInline-1744833251000","value":{"bylineAuthor":"{bylineAuthor}","bylineBoard":"{bylineBoard}","anonymous":"Anonymous","place":"Place {bylineBoard}","gotoParent":"Go to parent {name}"},"localOverride":false},"Attachment:{\"id\":\"attachment:message1199816AttachmentNumber1\",\"url\":\"https://community.articulate.com/t5/s/rwgqn69235/attachments/rwgqn69235/javascriptforum-board/36/1/javascript-test-CH.story\"}":{"__typename":"Attachment","id":"attachment:message1199816AttachmentNumber1","filename":"javascript-test-CH.story","filesize":302053,"contentType":"application/story","url":"https://community.articulate.com/t5/s/rwgqn69235/attachments/rwgqn69235/javascriptforum-board/36/1/javascript-test-CH.story"},"CachedAsset:text:en_US-shared/client/components/nodes/NodeIcon-1744833251000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/nodes/NodeIcon-1744833251000","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":"javascriptforum-board","messageSubject":"javascript-not-working-in-full-screen","messageId":"1199723"},"buildId":"ISAhs0UxT148eG089lpQq","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/attachments/AttachmentView/AttachmentView.tsx","./components/attachments/AttachmentView/AttachmentViewChip/AttachmentViewChip.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","./components/messages/MessageView/MessageViewInline/MessageViewInline.tsx","../shared/client/components/common/List/ListGroup/ListGroup.tsx"],"appGip":true,"scriptLoader":[]}