Yes, Apps-Script do not work on mobile unfortunately. One option for you is to do a Webapp and provide the functionality that way. Webapps do work on mobiles but will involve you putting together your content via an HTML page.
--
You received this message because you are subscribed to the Google Groups "Google Apps Script Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-apps-script-community/8782266a-adb6-48c8-bbcc-32a8f682a518n%40googlegroups.com.
You received this message because you are subscribed to a topic in the Google Groups "Google Apps Script Community" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-apps-script-community/Qeg1mAkvbSg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-apps-script-community/CAA4K68ZFffKYnUC7xPxmgOxucVoUzKW%2BCgKdYhAPEHs_pj7eGg%40mail.gmail.com.
--
You received this message because you are subscribed to a topic in the Google Groups "Google Apps Script Community" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-apps-script-community/Qeg1mAkvbSg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-apps-script-c...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-apps-script-community/e98ad2d7-57cc-47ba-a695-eecb4b5a8165n%40googlegroups.com.
Hi BrentThanks for the suggestion! I've tried in incognito mode and then the script is working indeed. However, when I embed the script link into the software in the same incognito window, it keeps telling me that I don't have access. Maybe I need to add something in the script about access or authorization?
Op wo 19 mrt 2025 om 14:10 schreef Brent Guttmann <brent.g...@toptierpa.com>:
Try going to it in incognito mode or after logging out of google and clearing browser cache. I know that for me, I have problems if I am logged into multiple accounts. (Even if they are separate chrome instances)
Hi Brent
When I put this in like this I'll get the following error in return: syntax error: syntaxError: Illegal return statement line: 1 file: code.gs...Sorry for the inconvenience. I'm totally new to the scripting :-s
Op wo 19 mrt 2025 om 16:06 schreef Brent Guttmann <brent.g...@toptierpa.com>:
Make sure your doGet() function has these 'modes' set:function doGet() {return HtmlService.createHtmlOutput(generateHTML()).setXFrameOptionsMode(HtmlService.XFrameOptionsMode.ALLOWALL).setSandboxMode(HtmlService.SandboxMode.IFRAME);}