2017-08-03 148 views
-3

我試圖將表單中的調查問卷鏈接到pdf文檔。理想情況下,我想通過網絡託管文檔並直接鏈接到所述文檔的頁面或部分。從表單插入超鏈接到pdf

有沒有一種辦法,使用腳本,

  1. 在表單名爲超鏈接?並且,
  2. 將鏈接指向特定頁面或節的網站託管pdf?

由於提前, 扎克

+1

您應該儘可能準確地描述您的問題,並展示您迄今爲止所做的解決問題的方式:[我如何提出一個好問題?](https://stackoverflow.com/幫助/如何問) –

+0

您可以將其添加爲圖像。您可以使用Paint Shop Pro或Snagit等程序將圖像從屏幕上取下,然後將其作爲JPG格式上傳到表單中。 – Cooper

回答

0

這是圖像從PDF取並保存爲JPG。然後上傳到表單。

enter image description here

下面是添加圖像的形式的一個例子:

// Open a form by ID and add a new image item 
var form = FormApp.openById('1234567890abcdefghijklmnopqrstuvwxyz'); 
var img = UrlFetchApp.fetch('https://www.google.com/images/srpr/logo4w.png'); 
form.addImageItem() 
    .setTitle('Google') 
    .setHelpText('Google Logo') // The help text is the image description 
    .setImage(img); 

這裏的link引用的文檔。