Forum Discussion
exporting variables to be read in a Google docs spreadsheet
Hi all -
First of all - thanks for the discussion! Like many others, I'm not a coder so it is inspiring to see how many people are working together to build a solution to this problem.
I've had a lot of help from Tracy - her tutorial is amazing! - but am still having trouble implementing a solution.... I'd really appreciate any advice that could be given for my 1 variable, test Articulate course...
Thanks again!
Jane James
Link to hosted articulate course
https://googledrive.com/host/0B82TWSb7pI3wQ2dkWlMyT2lBSGs
Link to survey form
- https://docs.google.com/forms/d/1c9OZMa1hFuM39FqwU7dz-1GzSXrcdbjCD59Ldnbcx4o/viewform?usp=send_form
Link to articulate course
https://drive.google.com/open?id=0B82TWSb7pI3wSkZTVEhpcTlLR2M
Text of the javascript program
var player = GetPlayer();
$.ajax({
url: “https://docs.google.com/forms/d/1c9OZMa1hFuM39FqwU7dz-1GzSXrcdbjCD59Ldnbcx4o/formResponse”,
type: “POST”,
dataType: “jsonp”,
data: {“entry.1796023489” :player.GetVar(“Hi“)},
success: function(data)
{
alert(data);
}
});
return false;