Assigned
Status Update
Comments
sp...@gmail.com <sp...@gmail.com> #2
This possible for Forms but no with Google Apps Script API. Will wait.
fu...@gmail.com <fu...@gmail.com> #3
I would love this as well!
su...@gmail.com <su...@gmail.com> #4
Waiting for this too !!!
[Deleted User] <[Deleted User]> #5
Dear Google Team! Ability to set CORRECT ANSWER programmatically (i.e. not manually) in the textItem is absolutely essential! Also, I am advocating for allowing programmatic assignment of the Correct and Incorrect feedback, using Google Script. Implementation of these functions would be very useful and, I am sure, would be appreciated by many users. Thank you! Prof P.M.Trivailo
mi...@google.com <mi...@google.com> #6
Hi! The ability to set the correct answer on a text item would also be hugely beneficial to me! Cheers, Ole Lynge Sørensen
lu...@gmail.com <lu...@gmail.com> #7
+1 It should definitely be included as a feature! Setting correct answers manually is not suitable. Please add this as soon as possible! Thank you as always for listening to us <3
mo...@gmail.com <mo...@gmail.com> #8
+1
fu...@gmail.com <fu...@gmail.com> #9
+1: very necessary.
mo...@gmail.com <mo...@gmail.com> #10
+1 also it would be very useful to dynamically generate whole item from json config with answers and points, i.e. for school test
fu...@gmail.com <fu...@gmail.com> #11
+1
mo...@gmail.com <mo...@gmail.com> #12
This would be really useful
ro...@gmail.com <ro...@gmail.com> #13
+1
Please!!!!
Please!!!!
Description
First, please search through existing issues to ensure that the feature request has not already been reported. You can start the search here:
If the feature has already been requested, you can click the star next to the issue number to subscribe and receive updates. We prioritize responding to the issues with the most stars. You can also comment on the issue to provide any context of how the feature would benefit you.
Also, please verify that the functionality you are requesting is not already present in Apps Script.
If your feature has not been requested, please provide all of the following:
-----------------------------------------------------------------------------------------------------------------------------
A short description of the request:
add a method to FormApp TextItem to setCorrectAnswers()
and also an option to give correct and incorrect feedback like with choice type items
What is the purpose of this new feature?
Now that forms allow quizzes you can add possible responses to text items to score as correct in the interface. This would allow you to create quiz items through script and also identify responses to score correctly.
For example:
var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz');
var item = form.addTextItem();
item.setTitle('What is the correct html open tag for a header size 1?');
var acceptableAnswers = ["h1", "H1", "<h1>", "<H1>"];
item.setCorrectAnswers(acceptable);
It would also be nice to set points based on different answers. For example, you might have an array of answers that you give full credit for (e.g., 2 points) and another array of answers that you give partial credit (e.g., 1 point). This would also involve updating the UI interface.
What existing Apps Script services would this affect? FormApp
What existing data does this use?
Please provide any additional information below, including the particular use cases you believe this feature would enable or improve.