FileMaker Related Cell Question
FileMaker Related Cell Question
- Subject: FileMaker Related Cell Question
- From: Jason Bourque <email@hidden>
- Date: Wed, 24 Sep 2008 21:32:16 -0400
- Thread-topic: FileMaker Related Cell Question
Title: FileMaker Related Cell Question
Hello,
I know how to access the normal cell, but how do I access the related fields on the layout? Thanks, Jason
tell application "FileMaker Pro Advanced"
tell database "Marketing Landscape"
show layout "Item Number History"
tell table "Item Number History"
try
set vRecsFound to every record whose cell "Item Number"'s cellValue is vItemNumber
on error
set vRecsFound to {}
end try
-- return vRecsFound
if vRecsFound is {} then
set vNewRecord to create new record
if gTestTF then
show vNewRecord
end if
set cell "Free Product History UID" of vNewRecord to vFlyerSpecialUID
set cell "Item Number" of vNewRecord to vItemNumber
set cell "Macola Category" of vNewRecord to vMacolaCategory
end if
end tell
end tell
end tell
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/archives/applescript-users
This email sent to email@hidden