Re: Images and FMP
Re: Images and FMP
- Subject: Re: Images and FMP
- From: Gary Lists <email@hidden>
- Date: Mon, 12 Jan 2004 16:04:48 -0500
Steve Suranie wrote [01-12-04 11:47 AM]:
>
Can anyone send me a snippet of how to get images into FMP using AppleScript.
>
>
Thanks
>
>
Steve
FM container fields take a file reference.
set thisImage to (choose file) -- pick an image file, for example
tell app "FileMaker Pro"
set cell "My Image" of current record to (file thisImage)
-- above, we coerce from alias to file
end tell
The AS dictionary might be a useful place to start scripting...eh? ;)
--
Gary
_______________________________________________
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.