Questions tagged [applescript-numbers]

AppleScript-Numbers are for questions regarding the control of Apple's Numbers for OS X using AppleScript.

21 questions
0
votes
1 answer

Copy content of email body with particular subject into numbers app

I am trying to get all emails from particular account (as I have four) with certain subject and then take content of those mails and write them into a numbers app with AppleScript. Mail body contains personal info like email, date of birth, and so…
prius
  • 103
  • 4
  • 12
0
votes
0 answers

NSAppleScript sandbox entitlement for Numbers

I'm needing to read from a Numbers spreadsheet in an App Store Sandboxed Mac app. I have it working fine until I enable the Sandbox. Apples docs say to use the com.apple.security.scripting-targets entitlement however I cannot find any entitlements…
0
votes
2 answers

Accessing cells with offset reference in Numbers with Applescript

How can I reference a cell relative to another cell in Applescript like in Excel VBA? In Excel VBA I could use "offset" to set the value of cell D2: Range("A1").Offset(1,3).Value = "Example" I searched everywhere but there doesn't seem to be an…
0
votes
4 answers

Setting a variable in AppleScript based on a list in a Numbers sheet

AppleScript beginner here. Searching high and low hasn't led me to the answer yet. I'm using AppleScript to help run youth wrestling tournaments. Each division (based on age) is broken down into weight classes. For example: Novice 80 or Cadet…
0
votes
1 answer

AppleScript get the Name of the cell

I'm trying to get a script to search a range in a Number's documents for an email address and then tell me what cell that email was in. tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1 set theEmail to…
0
votes
1 answer

How to use "move..." verb to move sheets in Numbers?

I'm trying to figure out how to re-position sheets in Numbers. There is no way to insert things at specific location so I am hoping that I can find another way. The move verb drew my attention (it is in the Numbers dictionary) however there is…
Frank C.
  • 7,758
  • 4
  • 35
  • 45
1
2