Tagged Questions
-3
votes
0answers
35 views
I am looking for Google Apps Script - Web Developer in San Francisco, CA. Know anyone? [closed]
I am in a need of Google Application Design, Development and Maintenance developer in San Francisco. I can share the details of the opportunity if someone is interested. I can be reached at ...
0
votes
1answer
92 views
xml/rss feed(s) drawing from a Google Spreadsheet?
This is a very general query - really I'm just looking for pointers to set me out on the right road.
In brief, I'm looking to generate realtime xml/rss feed(s) drawing from a Google Spreadsheet? Can ...
0
votes
1answer
67 views
How do I build a datagrid using google apps script?
Using Google Apps Script + GUI API, How can I build a datagrid?
I am trying to build an object to show a range from spreadsheet into google site, with title columns, data, and clicking on the title ...
0
votes
1answer
91 views
Google Apps Script - Issue getCalendarsByName then getEvents
I am building a Google Apps script code that will write the events from a Calendar to a Spreadsheet.
The Calendar I want to use is not my default calendar, and I want to get this calendar by name.
...
1
vote
0answers
138 views
Google Apps Script UI Instances
This is my first question regarding Google Apps Script. First and foremost, I love this tool. However, I have run into a very huge issue. In our school district, I created a Web App to edit the ...
1
vote
0answers
216 views
Change row color in Google spreadsheet only if both columns green
I'm trying to write a script for a checklist that requires two verifiers ("Mech" and "Tech" columns) per line item. Each line item must have both boxes checked before turning the whole row green. By ...
0
votes
0answers
109 views
Google Script Error - Cannot find method add
I have been puzzled by this error. I have not been able to figure out what I am missing. Without the calls to headPanel the UI was working but would not insert the title or text label so I added the ...
0
votes
1answer
33 views
Google scripts run for trashed documents
I've deleted spreadsheets with scripts attributed to them that run on a timed frequency. I also had notifications setup to inform me when a script had an error.
Since delete them I've gotten a steady ...
1
vote
1answer
52 views
Adding waypoints to DirectionFinder object in Google Apps Script
i use directionFinder in Google Apps Script application and I want do add some waypoints. Everything works well when i add this like this:
var directions = ...
0
votes
1answer
382 views
Run Google Apps Script Function via API
I have a few Google documents; some are normal Docs, some are Google Scripts.
When I'm logged in with my account, I can run one of my scripts manually, that interacts with my Docs (it opens an ...
0
votes
1answer
56 views
getEditors() getOwners()
can i get editors & authors of all the pages of site separately from Apps Script.
I want to do it because I am using Page Level Permissions for pages. So seperate pages have seperate owners & ...
0
votes
0answers
62 views
Can a Google Apps Script copy another apps script?
If I own two Google Apps Scripts, is there currently a way for me to have one create a copy of the other? I can create copies of documents and sites with scripts, but can I create copies of Scripts ...
0
votes
0answers
207 views
Client handler Regex validators in Google Apps Script
I am coding a extended UI web form in GAS. I have several controls there. I have added client handlers to validate the input on the text box.
However, when I try to use validateMatches and ...
0
votes
1answer
73 views
Issues with getRoot Google Apps Script
I am having problems deploying a script as a web app. Here is the extremely simplified version of what I want to accomplish.
function doGet (e) {
var userRoot = DocsList.getRootFolder();
var ...
0
votes
0answers
25 views
announcement post template without allowing add files
I have an announcement page on which I am posting announcements pro-grammatically. which is working fine with:
targetAnnouncementPage.createAnnouncement(title, newHtml);
but i need to remove Add ...
0
votes
0answers
35 views
Error: DateBox() - undefined
Since today my script is showing me a error in the DateBox() variable, like here https://sites.google.com/site/appsscripttutorial/user-interface/datebox
please help!!
0
votes
1answer
56 views
Google Apps Script - Combining Firstname and Lastnames to get emails
I'd like to combine the firstname and lastname in my spreadsheet and get unique email ids with it, also concatenating it with a dot(.) , an example is john.harris@unixxx.com
Also i realised that if ...
1
vote
0answers
148 views
Google Apps Script Server Error Occurred clicking submit - occurs suddenly without script changes
Our spreadsheet scripts have not changed in 3 months. As of yesterday we get the error "Error encountered: we're sorry a server error occurred Please wait a bit and try again" when clicking the ...
0
votes
2answers
67 views
Capture Google Account used to access a Google site from within a GAS
I have a Google site that has a Google script UI that accesses a Google Spreadsheet.
I would like for the Google Script to access a different spreadsheet based on the Google account that was utilized ...
0
votes
1answer
346 views
Lock Service and Script Properties in Google Apps Script
I am writing a code on Google Apps Script.
I need to give an unique number for each user.
At first, I wrote some code with tryLock and ScriptProperties class.
It gave the same number for several ...
1
vote
2answers
401 views
Google apps script: urlfetchapp - service invoked too many times
I have a google spreadsheet which calls in many cells a user specific function. This function fetches 3-4 specific relatively short web pages and parses them. The pages change only once a day, but I ...