Re: Scripting copy and paste commands in FileMaker
Re: Scripting copy and paste commands in FileMaker
- Subject: Re: Scripting copy and paste commands in FileMaker
- From: David Durkee <email@hidden>
- Date: Thu, 14 Aug 2003 17:09:23 -0500
Try this:
tell application "FileMaker"
set texttocopy to cellValue of cell "foo" of database 1
set clipboard to texttocopy
end tell
Tell application "Word"
paste
end tell
On Thursday, August 14, 2003, at 04:06 PM, Courtney Moore wrote:
Hello Everybody-
I have again stumbled across another road block.
I am trying to copy data from a from a field in FileMaker and then
pasting
that data into Word document. No syntax I use seems to work.
Here is a failed script attempt of the things I
Tell application "FileMaker Pro"
Activate
Select (data of cell "z _yearMonthSpreadsheet")
Copy
End tell
Tell application "Microsoft Word"
Paste
End tell
Apparently FileMaker does not understand the select command.
Does anyone have anyother suggestions?
Thanks For Your help!
Courtney
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.