MACSCRPT Archives

July 2006

MACSCRPT@LISTSERV.DARTMOUTH.EDU

Options: Use Monospaced Font
Show Text Part by Default
Show All Mail Headers

Message: [<< First] [< Prev] [Next >] [Last >>]
Topic: [<< First] [< Prev] [Next >] [Last >>]
Author: [<< First] [< Prev] [Next >] [Last >>]

Print Reply
Subject:
From:
Mark Lively <[log in to unmask]>
Reply To:
Macintosh Scripting Systems <[log in to unmask]>
Date:
Wed, 12 Jul 2006 06:51:46 -0400
Content-Type:
text/plain
Parts/Attachments:
text/plain (16 lines)
It just hit me what the easiest solution probably is.  It won't be  
quite as fast but...

Tell application "FileMaker Pro"
	tell database "myDB"
		tell layout "myLayout"
			set {fa, fb, fd} to get {field "a",Field"b",field"d"}
		end
	end
end
set lun to open for access someFile
repeat with i from 1 to count fa
	write ""&item i of fa&","&item i of fb&","&item i of fd&return to lun
end repeat
close access lun

ATOM RSS1 RSS2