有没有设置文本颜色的好方法

时间:2019-11-15 21:14:50

标签: google-apps-script-addon

我正在制作google docs rpg,并尝试通过生成种子,将种子转换为Unicode并试图使该文本不可见来保存数据。我尝试将颜色设置为文档中的某个点,但是无法正确显示颜色。

我在https://developers.google.com/apps-script/reference/slides/text-style#setforegroundcolorforegroundcolor上找到了一些细节,但无法正常工作。

这是我的代码

    var seed = Math.floor(Math.random() * 13210893980213890)
    var doc = DocumentApp.getActiveDocument();
    var body = doc.getBody();
    body.editAsText().appendText("​").setForegroundColor('#FFFFFF').setFontSize(0);
    body.editAsText().appendText(String.fromCharCode(seed)).setForegroundColor('#FFFFFF').setFontSize(0);
    body.editAsText().appendText("​​").setForegroundColor('#FFFFFF').setFontSize(0);

0 个答案:

没有答案