Re: Numbers '08 (Selection range)
Re: Numbers '08 (Selection range)
- Subject: Re: Numbers '08 (Selection range)
- From: KOENIG Yvan <email@hidden>
- Date: Tue, 13 Jan 2009 11:53:44 +0100
Le 13 janv. 2009 à 06:23, Scott Lindsey a écrit :
tell application "Numbers"
tell document 1
set mySelectedRanges to selection range of every table of every
sheet
whose it is not missing value
repeat with sheetRanges in mySelectedRanges
repeat with thisRange in sheetRanges
if contents of thisRange is not missing value then
try
--return thisRange --poorly formed result
thisRange as text
on error errMsg number errNum
set oldDelims to AppleScript's text item delimiters
set AppleScript's text item delimiters to {"\""}
set myRange to text item 2 of errMsg
set myTable to text item 4 of errMsg
set mySheet to text item 6 of errMsg
set myDoc to text item 8 of errMsg
set mySelection to (a reference to (range myRange of table
myTable
of sheet mySheet))
set AppleScript's text item delimiters to oldDelims
return mySelection
end try
end if
end repeat
end repeat
end tell
end tell
Thanks, but here under 10.4.11 I get:
tell application "Numbers"
get selection range of every table of every sheet of document 1
whose it ≠ missing value
{{missing value, missing value}, «class C3:D4" of table
"table1_of_sheet2" of sheet "Sheet 2" of document "essaiREf.numbers"}
count «class C3:D4" of table "table1_of_sheet2" of sheet "Sheet 2"
of document "essaiREf.numbers"
"Erreur dans Numbers : Impossible de transformer «class of table
\"table1_of_sheet2\" of sheet \"Sheet 2\" of document
\"essaiREf.numbers\" en type reference."
Yvan KOENIG (from FRANCE mardi 13 janvier 2009 11:53:38)
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden