Re: How to download app on Windows computer? (2025)

Skip to main content

Sign in

You're signed out

Sign in to ask questions, follow content, and engage with the Community

Sign in

'; hoverCardInner.innerHTML = loadingHTML.repeat(4); hoverCardContainer.classList.add('profile-hover-card-show'); // Extract information from the image element const titleField = avatar.getAttribute('title'); const userInfoUrl = `https://${mainURL}/api/2.0/search?q=SELECT first_name, last_name, login, view_href, rank, topics, solutions_authored, id, email FROM users WHERE login = '${titleField}'`; const userPostsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}'`; const userSolutionsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}' AND is_solution = true`; const userBadgesUrl = `https://${mainURL}/api/2.0/search?q=SELECT user_badges from users where login = '${titleField}'`; // Fetch user information async function createProfileData() { const userInfo = await fetch(userInfoUrl); const userPosts = await fetch(userPostsUrl); const userSolutions = await fetch(userSolutionsUrl); const userBadges = await fetch(userBadgesUrl); const userInfoData = await userInfo.json(); const userPostsData = await userPosts.json(); const userSolutionsData = await userSolutions.json(); const userBadgesData = await userBadges.json(); const userBadgesArray = userBadgesData.data.items[0].user_badges.items; const earnedBadgesArray = userBadgesArray.filter(badge => badge.earned_date); earnedBadgesArray.sort((a, b) => new Date(b.earned_date) - new Date(a.earned_date)); const userRankName = userInfoData.data.items[0].rank.name; const userID = userInfoData.data.items[0].id; // const userKudosUrl = `https://${mainURL}/restapi/vc/users/id/${userID}/metrics/name/net_kudos_events_received?restapi.response_format=json`; const userKudos = await fetch(userKudosUrl); const userKudosData = await userKudos.json(); let fullName = userInfoData.data.items[0].login; if (userInfoData.data.items[0].first_name !== undefined && userInfoData.data.items[0].last_name !== undefined) { let firstName = userInfoData.data.items[0].first_name; let lastName = userInfoData.data.items[0].last_name; fullName = firstName + " " + lastName; } else { fullName = userInfoData.data.items[0].login; } let userRankIcon = ""; if (userInfoData.data.items[0].rank.icon_left !== undefined) { userRankIcon = userInfoData.data.items[0].rank.icon_left; } else { userRankIcon = ""; } let userEmail = ""; // <#if user_has_role> if (userInfoData.data.items[0].email !== undefined) { userEmail = userInfoData.data.items[0].email; } else { userEmail = ""; } // <#else> userEmail = ""; // #if> const userViewHref = userInfoData.data.items[0].view_href; const userPostsCount = userPostsData.data.count; const userSolutionsCount = userSolutionsData.data.count; const userKudosCount = userKudosData.response.value.$; const userBadgesCount = earnedBadgesArray.length; let badgesHTML = ""; if (earnedBadgesArray.length === 0) { badgesHTML = `

This user hasn't earned any badges yet.

`; } else { for (let i = 0; i < earnedBadgesArray.length; i++) { const badgeName = earnedBadgesArray[i].badge.title; const badgeIcon = earnedBadgesArray[i].badge.icon_url; const badgeHTML = `

Re: How to download app on Windows computer? (13)

`; badgesHTML += badgeHTML; if (i >= 4) { break; } }; } const hoverCardHTML = `

${fullName}

Re: How to download app on Windows computer? (14)${userRankName}

${userEmail}

${badgesHTML}

${userPostsCount} posts ${userKudosCount} likes ${userSolutionsCount} solutions

`; // // Display the hover card return hoverCardHTML; } if (hoverCardInner.innerHTML.includes('loading-box')) { createProfileData().then((hoverCardHTML) => { hoverCardInner.innerHTML = hoverCardHTML; }); } } }); //Hide the hover card on mouseout avatar.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseover', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.add('profile-hover-card-show'); }); }); });

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

  • Community
  • Canvas
  • Canvas LMS
  • Canvas Question Forum
  • Re: How to download app on Windows computer?

Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page

`; const toolTip = document.createElement('div'); toolTip.classList.add('like-button-tooltip'); toolTip.innerHTML = toolTipCode; likeButton.appendChild(toolTip); return toolTip; } document.addEventListener('DOMContentLoaded', function () { const likeButton = document.querySelector('.lia-button-image-kudos'); const likeButtonLink = document.querySelector('.kudos-link'); if (!likeButton || !likeButtonLink) { console.error("Like button or link not found."); return; } let likeDismissCookie = localStorage.getItem("inst_comm_like_dismiss"); let dismissTime = parseInt(likeDismissCookie); if (isNaN(dismissTime) || dismissTime < Date.now()) { localStorage.setItem("inst_comm_like_dismiss", "-1"); dismissTime = -1; } if (dismissTime === -1) { const toolTip = createToolTip(likeButton); const toolTipClose = toolTip.querySelectorAll('.like-button-tooltip-close'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { toolTip.style.display = 'block'; setTimeout(() => { toolTip.style.opacity = '1'; }, 1000); setTimeout(() => { toolTip.style.opacity = '0'; setTimeout(() => { toolTip.style.display = 'none'; }, 500); }, 28000); observer.unobserve(likeButton); } }); }); observer.observe(likeButton); likeButtonLink.addEventListener('click', () => { toolTip.style.display = 'none'; }); if (toolTipClose.length > 0) { toolTipClose.forEach(close => { close.addEventListener('click', () => { const fiveDays = Date.now() + 5 * 24 * 60 * 60 * 1000; localStorage.setItem("inst_comm_like_dismiss", fiveDays); toolTip.style.display = 'none'; }); }); } } }); //

Found this content helpful? Log in or sign up to leave a like!

How to download app on Windows computer?

Jump to solution

Re: How to download app on Windows computer? (15)

cwatts239601

Community Member

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎05-27-202506:49 PM

How do I download app onto my windows computer?

Solved!Go to Solution.

I also have this question

0Likes

1 Solution

Jump to solution

Re: How to download app on Windows computer? (16)

DrTerriC

Community Contributor

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎05-28-202509:07 AM

Canvas is a web based tool.. While there are some aftermarket (not sanctioned) canvas Apps for Windows.. they require you give read and write privileges to your account.. If you are working on a computer, I would suggest just bookmarking your Canvas Login in Chrome and work completely off the web browser.

View solution in original post

This reply answered my question

3Likes

  • All forum topics
  • Previous Topic
  • Next Topic

1 Reply

Jump to solution

Re: How to download app on Windows computer? (17)

DrTerriC

Community Contributor

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎05-28-202509:07 AM

Canvas is a web based tool.. While there are some aftermarket (not sanctioned) canvas Apps for Windows.. they require you give read and write privileges to your account.. If you are working on a computer, I would suggest just bookmarking your Canvas Login in Chrome and work completely off the web browser.

This reply answered my question

3Likes

Re: How to download app on Windows computer? (18)

Unanswered Topics

  • Recurring Events added to appointment scheduler.

    Canvas Question Forum

  • Audio Playback Issue - noise

    Canvas Question Forum

  • Has anyone had experience with Clever LMS for Canv...

    Canvas Question Forum

  • Only award credit for attempted questions on surve...

    Canvas Question Forum

  • Grade will not passback from external LTI Cengage ...

    Canvas Question Forum

View All

Latest Topics

  • My Canvas shows nothing on the desktop app, but sh...

    Canvas Question Forum

  • Creating groups for students who need extended tim...

    Canvas Question Forum

  • Video Player - Remove skip forward

    Canvas Question Forum

  • Allowing students to view assignments but not subm...

    Canvas Question Forum

  • Embedded YouTube videos in an uploaded file not pl...

    Canvas Question Forum

View All

To interact with Panda Bot, our automated chatbot, you need to sign up or log in:

Sign in

View our top guides and resources:

Find My Canvas URL Help Logging into Canvas Generate a Pairing Code Canvas Browser and Computer Requirements Change Canvas Notification Settings Submit a Peer Review Assignment

To interact with Panda Bot, our automated chatbot, you need to sign up or log in:

Sign in

Need help? Sign up or log in to interact with Panda Bot

Sign up

Re: How to download app on Windows computer? (2025)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Dong Thiel

Last Updated:

Views: 5754

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Dong Thiel

Birthday: 2001-07-14

Address: 2865 Kasha Unions, West Corrinne, AK 05708-1071

Phone: +3512198379449

Job: Design Planner

Hobby: Graffiti, Foreign language learning, Gambling, Metalworking, Rowing, Sculling, Sewing

Introduction: My name is Dong Thiel, I am a brainy, happy, tasty, lively, splendid, talented, cooperative person who loves writing and wants to share my knowledge and understanding with you.