Re: exporting container fields in FMP
Re: exporting container fields in FMP
- Subject: Re: exporting container fields in FMP
- From: Steve Savery <email@hidden>
- Date: Fri, 13 Jun 2003 11:26:03 +0100
Thank you Kevin, this works (with a little modification). I'm going to
convert the PICT files to JPEG separately after they've all been
'copied' to a local folder. I didn't realise that FileMaker translated
any graphic into a PICT format when inserted into a container field.
Steve
On Wednesday, Jun 11, 2003, at 21:50 Europe/London, Kevin Carter wrote:
tell app "filemaker pro"
set newFileName to get data of cell "fooText" of current record of
database "fooFile"
set newFileData to get data of cell "fooContainer" of current record
of database "fooFile" -- as data
end tell
set fileSession to open for access file ((path to desktop) as string)
& newFileName with write permission
set eof fileSession to 0
write newFileData to fileSession
close access fileSession
_______________________________________________
Steve Savery
Bristol, United Kingdom
[G4 Dual 867Mhz, Mac OS X 10.2.6]
_______________________________________________
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.