Re: Images and FMP
Re: Images and FMP
- Subject: Re: Images and FMP
- From: "T.J. Mahaffey" <email@hidden>
- Date: Mon, 12 Jan 2004 15:36:40 -0600
Steve,
1. Create a database with fields. (aka 'cells' when interacting with the
AS side of things)
2. Make sure the field where you want an image to go is of the container
type.
3. In the example below, my image field is called "Image".
tell application "FileMaker Pro"
tell database 1
tell current record
set cell "Image" to file "Jasper:Users:tjm:Desktop:logo.gif"
end tell
end tell
end tell
I hope this gets you on your way.
There might be multiple ways of doing this, but this one I came up with
off the cuff.
--
T.J. Mahaffey
email@hidden
>
Can anyone send me a snippet of how to get images into FMP using
>
AppleScript.
>
>
Thanks
>
>
Steve
_______________________________________________
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.