Google Apps Script is a cloud based scripting language for light-weight application development in the Google Apps platform.
0
votes
0answers
7 views
How to embed google form which is created using script
I have created a form using script in google now i want to add this in my website and want to share the form. I don't know how to do that?? So if anyone knows how to do that please let me know i need ...
0
votes
3answers
96 views
Rewriting AppleScript to appscript-rb, setting variable in Keyboard Maestro
I need to set a variable in Keyboard Maestro, and the documentation states that this can be done with AppleScript:
tell application "Keyboard Maestro Engine"
make variable with properties {name:"My ...
1
vote
1answer
73 views
rb-appscript stopped working with Ruby 2.0.0 - patch ideas to make it work again?
I know that rb-appscript is officially no longer supported.
However, I tried and found that rewriting existing libraries to use alternative methods (e.g. osascript) was a non-trivial work and it ...
0
votes
0answers
36 views
Google reader does not read the XML generated by Google App Script
I created an utility with Google app script. The script returns ContentService.MimeType.RSS
I first deployed it and then got the URL. When I run the URL from the browser it runs successfully. But ...
0
votes
0answers
67 views
Google Appscript Workflow - changing an approver's status
I have a workflow process where I save the state of the workflow in a google spreadsheet column i.e.
[{"numberOfApprovers":1,"approvers": ...
1
vote
1answer
231 views
Parsing and editing XML with Google Apps Script
I've been looking for a way to parse and edit XML using Google Apps Script. Parsing the data using the in-built Xml class is easy enough but this doesn't let me edit any of the data. Take for example ...
0
votes
1answer
86 views
Applescript (via appscript) stops processing in loop
The following ruby code automatically creates pages inside VoodooPad and adds meta tags to each page.
vp = app("VoodooPad.app")
doc = vp.open vpdoc
page_names = [@name]
if ...
1
vote
0answers
34 views
Modify html Meta when using google app script ui service
Is there anyway to add meta tags to html header when creating a web app using the ui service on Google app scripts?
1
vote
1answer
55 views
Expense aproval send error google apps script
I am trying to get an expense approval sheet working, most of it now works, but when I submit the script to send the approval results to the user and the sheet. I get following error:
TypeError: ...
1
vote
0answers
170 views
Fusion table authentication lost when writing special character to a table field
I am very new on google app scripts and fusion tables. I am developing a CRM app to my company and I am using google sites, google app scripts and fusion table to do that.
I am also using an example ...
2
votes
3answers
353 views
How to pause App Scripts until spreadsheet finishes calculation
Because google spreadsheets does not support iterations, I wrote my own simple app script to adjust an input based upon the calculation of the spreadsheet output. However, after I change the input ...
0
votes
0answers
23 views
lock appears on script
I have a script in my google spreadsheet doc, and I currently see an image of a 'lock' on the tab. I am the owner of this doc, but have no way to edit or delete this script. How can I get rid of ...
0
votes
1answer
344 views
Google Spreadsheet Chart to show Range of Dates
I am constructing a chart to show stock values from a Google Spreadsheet macro, using Google App Script. I read the spreadsheet values into Charts.newDataTable(), then construct a filter with ...
0
votes
1answer
67 views
Translating AppleScript into rb-appscript
I'm trying to translate the following piece of code into Ruby using the rb-appscript gem:
tell application "System Events" to tell process "Dock"
set dock_dimensions to size in list 1
set ...
0
votes
0answers
53 views
Does the HtmlServices Google AppScript service work?
I can't seem to get any string output when trying to use the HtmlServices Class when trying to populate cells in a Google Spreadsheet. Does anybody have experience with this? I know it's labeled as ...
0
votes
2answers
364 views
The url is not recognized as a valid Google Script
I published an App Script as a web app and everything runs fine when I use the web app URL.
https://script.google.com/a/macros/[mydomain]/s/[servicekey]/exec
When I go into a Google Site and try to ...
0
votes
0answers
16 views
Can I obfuscate my appscript code?
Assuming I want to publish & possibly charge for my appscript code (on the chrome webapp/etc..), I'd like to obfuscate my code or somehow hide it, as this is my IP.
Is this possible? if so, how? ...
0
votes
0answers
143 views
OS X's Mail.app toolbar: how to add an “action” button to it?
I have an AppleScript ported to Python's appscript and I would like to add a button to OS X's Mail.app toolbar to execute it (the default e-mail client on Mac OS). How can I extend Mail.app to do ...
0
votes
0answers
89 views
cannot view any app script, server returns Google Doc server error?
I've build a small app for a client using App Scripts and fusion tables. It has been up and running for several months. All of a sudden I got this error today on every page:
...
3
votes
1answer
666 views
Accessing BigQuery with Google Spreadsheet
I look on the internet to see how can I import bigquery data inside google spreadsheet.
I found this appscript sample, but it doesn'twork API are not at the same level, and I do not find how to query ...
0
votes
1answer
210 views
ruby on rails app and google app scripts
I have a app which runs on ruby on rails and mysql database. I need to generate couple of reports. Presently I am generating csv file but my Idea is to integrate with the google docs, as soon as a ...
0
votes
1answer
130 views
error: installing appscript
i am having some trouble getting appscript downloaded for python 2.7. when i try to run the easy install im geting a No such file or directory error. Anyone have anyideas on what im doing wrong?
$ ...
0
votes
1answer
66 views
How to get UI_element properties with appscript
I want to write code in appscript.rb equivalent to Applescript:
tell App "TextEdit"
properties of front window
end tell
Trying
te = app("TextEdit")
puts te.windows[1].properties
...
1
vote
0answers
174 views
Is it possible to reduce the startup time of MacRuby scripts which use the ScriptingBridge?
I would like to use MacRuby with ScriptingBridge instead of AppleScript to control Mac applications which support AppleScript. I used to do this using appscript, which is effectively deprecated, hence ...
0
votes
1answer
117 views
How can I use rb-appscript to drive Mac OS Finder's “Connect To Server” menu item
The end goal is to write an automated test in Ruby/Cucumber for connecting to a WebDAV server and testing authentication, CRUD and load/performance in Mac OS X.
I'm trying to simulate user behavior ...
1
vote
1answer
135 views
Does the Rdio Desktop API give tracks unique IDs?
I've built a small desktop app for myself that logs listens from iTunes and Rdio so I can create powerful playlists based on how I listen to music over time, but it requires each track to have a ...
1
vote
1answer
140 views
py-appscript expects arguments
I want to make a Python script to control VLC. VLC can be controlled through AppleScript and by using py-appscript I can run AppleScript code from Python.
Using AppleScript I can play/pause VLC by
...
3
votes
1answer
176 views
Ruby way of handling shell command that evokes a MacOS securityd window
I have a simple problem that I'd like to see if people here can help me with. Currently, I'm writing some test automation to handle a simple in house command line tool that dumps the contents of a ...
0
votes
0answers
255 views
AppleEvent handler from OSAX causes other AppleEvents to fail
The code
from appscript import *
ps = app("Adobe Photoshop CS5")
ps.do_javascript
works if Photoshop is not running yet. In that case, it starts up Photoshop and it finds the do_javascript method.
...
0
votes
2answers
207 views
Python appscript OSAX display_dialog: how to move it to foreground
I am playing around with the example from here; esp. I have this code:
from osax import *
sa = OSAX()
print sa.display_dialog("Python says hello!",
buttons=["Hi!", "Howdy!", ...
0
votes
0answers
52 views
Python appscript File type usage of non-existing files. error -1700
I tried to follow some Python appscript examples from here.
The following code
import mactypes, aem
mactypes.File("foo.jpg").desc.coerce(aem.kae.typeFSS)
gives
MacOSError: -1700
Why?
0
votes
1answer
204 views
Python appscript error: OSERROR: -1700, Can't make some data into the expected type
from appscript import *
ps = app("Adobe Photoshop CS5")
s = ps.current_document.save
s._labelledargterms
Gives:
{'appending': 'DcXt',
'as_': 'fltp',
'copying': 'SaCp',
'in_': 'kfil',
...
1
vote
2answers
338 views
Translate AppleScript to Python appscript (`do javascript`)
This is the AppleScript template:
tell application "Adobe Photoshop CS5"
set theFile to alias “Application:Documents:MyFile” open theFile
do javascript (file <path to Emboss.jsx>) with ...
0
votes
1answer
394 views
How to get path of currently selected file in Finder with rb-appscript in OSX Lion
In OSX 10.6 I used the following code to do something to each currently selected file in Finder:
app('Finder').selection.get.each do |item|
url =CGI::unescape(item.URL.get)
puts url
...
1
vote
2answers
190 views
Using rb-appscript to write a bulleted/numbered list in pages or textedit
I need to use rb-appscript to create a new Pages document that contains bulleted and numbered lists. Looking in to this, I see that paragraphs have a property called list_style, but I'm not familiar ...
1
vote
3answers
874 views
AppleScript from Java on Mac OS X 10.6?
To call AppleScript from Python, I use the "appscript" bridge:
http://appscript.sourceforge.net/
What can I use to call AppleScript from Java on Mac OS X 10.6+?
1
vote
0answers
46 views
Appscript hangs on OSX 10.5.8 using Apache2 Django
I've incorporated appscript into a python 2.6/django installation, and it works fine when served with the django development server, but when using Apache2 I get this:
The process has forked and ...
1
vote
1answer
375 views
How do I access all of the menu bar icons
I'm talking about the icons that show up on the right hand side of the menu bar. I can get access to that menu bar with (py-appscript)
app(u'System Events').processes[u'SystemUIServer'].menu_bars[1] ...
1
vote
1answer
102 views
py-appscript filter with datetime
I am trying to use the day field of a datetime property as a filter when selecting events from an iCal calendar.
The following doesn't seem to work (to select all events for the current date):
cal = ...
0
votes
1answer
98 views
rb-appscript: Accessing parent reference?
Is there an easy way to find the parent element reference of a reference?
For example, suppose I have the following reference:
ref = app("System Events").processes["Safari"].windows[1].buttons[1]
...
0
votes
1answer
149 views
Using appscript how can I accept self-signed SSL cert in Safari
I'm trying to automate some stuff which involves browsing to a https url. I'm using py-appscript with Safari on Mac OS X. But when Safari navigates to the https URL, since I have a self-signed ...
0
votes
1answer
115 views
appscript attribute error
I'm new to programming, and to python. I'm trying to use appscript in a python script to choose a pdf and a new destination folder, open the pdf in Adobe Acrobat Pro, OCR it, and save it in the new ...
0
votes
1answer
147 views
python appscript module - creating k. type objects
I'm learning and enjoying the appscript module, but I'm a little confused
about how to instantiate basic k. type objects.
for example, if I want to create a variable that holds a k.boolean value to
...
0
votes
2answers
148 views
Turn id back into a reference object in AppScript objective-c
I'm writing an app that talks to Mail using Objective-C-appscript (objc-appscript). I want to make a copy of the currently selected mail messages and perform some processing on it at a later -- at ...
1
vote
1answer
178 views
how to integrate graphs and pie charts in Google sites as a form?
How to integrate pie chart and graphs in google sites can anyone please help me out with google apps script
0
votes
1answer
231 views
Bouncing Python Application in Mac Dock when Accessing URLs with py-appscript
This has been a recurring, strange issue for me when accessing URLs using py-appscript, first in Safari and now in Chrome.
Whenever I run the script command to get the current URL in the terminal, ...
0
votes
1answer
145 views
Determine current Mac Chrome web page using Python (py-appscript)
So Chromium has officially added support for Applescript:
http://code.google.com/p/chromium/issues/detail?id=27468
I assume that this also means Chromium can be accessed by py-appscript. The ...
0
votes
2answers
304 views
How can i access the file-selection in Path Finder via py-appscript?
Using the filemanager Path Finder on mac os x, i wanna retrieve the selected files/folders with python by using py-appscript. py-appscript is a high-level event bridge that allows you to control ...
1
vote
1answer
181 views
py-appscript & events
Is it possible to subscribe to events using py-appscript ?
Example: I'd like to get a callback when a user changes a rating on iTunes.
0
votes
2answers
705 views
Translate Applescrip [key code 125 using command down] to appscript
how to translate the following Applescript to appscript:
tell application "System Events"
key code 0 using command down
end tell
I want to perform "Command + A"-like short cut, i.e., select all ...


