Sending Feedback as an Image, not text

Jun 18, 2018

I am excited that the following javascript actually works! My problem is I need my learners to take a screenshot of the completed storyline quiz and enter it into the feedback text box I created. The field won't allow a pic to be entered. We do not have the ability to record completion results in our LMS, Canvas (free version). Any help would be appreciated. We have several hundred people who need to complete this task. 

var player = GetPlayer();
var email = 'your_email@address.com';
var fbk = player.GetVar('Feedback');
var subject = 'Course Feedback';
var emailBody = 'Here is some feedback:' + '\n' + fbk;
var mailto_link = 'mailto:' + email + '?subject=' + subject + '&body=' + encodeURIComponent(emailBody);
win = window.open(mailto_link, 'emailWin');

Thanks!

Judy

Be the first to reply

This discussion is closed. You can start a new discussion or contact Articulate Support.