• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Protect Powerpoint presentation on google drive

YasserKhalil

Well-Known Member
Hello everyone
I was watching a video about how to protect PPT on google drive through creating a form ...
After applying the steps and creating the form as described in the video

I take the link of the power point file and put it in a new tab but the form doesn't appear. The access to the file was allowed directly
How can I show the form that protect the ppt file?

Here's the link if any one has an idea
 
I have tried and clicked "Send" button on Forms google doc and copy the link of the Form itself not the file and everything is ok

I have created a form now with Username and Password (Both required) ..

Also I have a spreadsheet named "Credentials" and I have put usernames and their passwords

How can I edit the form so as to be able to check for the username and password based on "Credentials" file?
Untitled.png
 
I don't think you can, at least not when I was working with Google docs about 1.5 years ago. You'd do it on the sheet, and activate script editor. But things could have changed.

You'd initialize the script upon form submission.
Code:
function Initialize() {
  var triggers = ScriptApp.getProjectTriggers();
  for(var i in triggers) {
    ScriptApp.deleteTrigger(triggers[i]);
  }

  ScriptApp.newTrigger("SendGoogleForm")
  .forSpreadsheet(SpreadsheetApp.getActiveSpreadsheet())
  .onFormSubmit()
  .create();

}

Then will need another function to find match within the sheet. You'd have better luck asking in Google Forum for that part.
 
Thanks a lot Mr. Chihiro for reply
Can you give me more details please? what is the missing function do I have to search for? How can I search google(what are the keywords?) so as to be able to find suitable solution if possible
 
Thanks a lot for reply again
I have no experience at all in this field. Is there any forums specialist in that kind of problems?
Thanks a lot for help
 
Back
Top