Tagged Questions

4
votes
2answers
1k views

Creating a new table in iWork numbers on a specific sheet using applescript

I am having trouble creating a new table on a specific sheet using Applescript unless the sheet I want insert the new table in is either new or current selected. The general form of the code I am ...
1
vote
1answer
187 views

In Apple Numbers, how can I calculate a difference between two dates?

I have a spreadsheet with data in Apple Numbers. I have a column of dates, and I would like to create a second column which displays the difference in number of days between the two dates. Example: ...
1
vote
1answer
2k views

Accessing cell properties in iWork Numbers

I'm trying a access the complete reference for a cell in Applescript. So far I've managed to get the cell reference and the table reference using a script like: tell application "Numbers" tell ...
1
vote
2answers
2k views

Mac iWork/Pages Automation

There is a rich scripting model for Microsoft Office, but not so with Apple iWork, and specifically the word processor Pages. While there are some AppleScript hooks, it looks like the best approach is ...
0
votes
0answers
25 views

Applescript to Change Chart Data

In iWork Pages I'd like to figure out how to change existing data in a pie chart (or any chart, for that matter). Right now I'm copy and pasting data from an Excel spreadsheet and it's working ...
0
votes
1answer
361 views

Populate Numbers Pop-up Menu cell using AppleScript

I have a Numbers (iWork 09) spreadsheet where I want to be able to populate a Pop-up Menu cell with values to enable easy analysis of selected data. I have the AppleScript to generate the values that ...
0
votes
2answers
433 views

applescript to compare cell values and then place the value of one cell into another

in a numbers app table i have the following data A B C D user_id login user_id login 2039 Abbott, Rachael ...
0
votes
1answer
412 views

pages 09 and applescript, save current file as .doc and overwrite current file

I want to save current opened file as .doc overwriting the current file.. so I have to find the current opened document path, then save the current file on the same path, saving as .doc Anyone can ...