MACSCRPT Archives

July 2006

MACSCRPT@LISTSERV.DARTMOUTH.EDU

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

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

Print Reply
Mime-Version:
1.0 (Apple Message framework v752.2)
Content-Type:
text/plain; charset=US-ASCII; delsp=yes; format=flowed
Date:
Wed, 12 Jul 2006 06:51:46 -0400
Reply-To:
Macintosh Scripting Systems <[log in to unmask]>
Subject:
From:
Mark Lively <[log in to unmask]>
In-Reply-To:
Content-Transfer-Encoding:
7bit
Sender:
Macintosh Scripting Systems <[log in to unmask]>
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